compizconfig-backend-kconfig: Changes to 'upstream-unstable'

2010-02-04 Thread Sean Finney
 configure.in.in  |2 +-
 settings-backend/kconfig_backend.cpp |   34 +-
 2 files changed, 6 insertions(+), 30 deletions(-)

New commits:
commit 16a32d19f5364359cc542e705708104c6e753d39
Author: Guillaume Seguin guilla...@segu.in
Date:   Wed Oct 14 04:09:45 2009 +0200

* Bump version to 0.8.4

diff --git a/configure.in.in b/configure.in.in
index a935856..a74f3d5 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.8.3)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.8.4)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit cd90fe31a59cb2d22d6284a32ad6f98bc3448dca
Author: Guillaume Seguin guilla...@segu.in
Date:   Mon Mar 9 15:52:49 2009 +0100

* Bump version to 0.8.3

diff --git a/configure.in.in b/configure.in.in
index d5a2b33..a935856 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.8.2)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.8.3)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit 214b5f900eebca6a844459ebb30e178aa72fb1b7
Author: Guillaume Seguin guilla...@segu.in
Date:   Mon Mar 9 15:50:43 2009 +0100

* Bump version to 0.8.2

diff --git a/configure.in.in b/configure.in.in
index 4deadbe..d5a2b33 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.7)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.8.2)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit 2ce691a692cbde55af27cc9ab6a11bf450493130
Author: Danny Baumann dannybaum...@web.de
Date:   Thu Feb 5 08:28:54 2009 +0100

Track option movements.

diff --git a/settings-backend/kconfig_backend.cpp 
b/settings-backend/kconfig_backend.cpp
index e9d9ced..6d1f4bf 100644
--- a/settings-backend/kconfig_backend.cpp
+++ b/settings-backend/kconfig_backend.cpp
@@ -92,21 +92,17 @@ struct _SpecialOption
 const specialOptions[] =
 {
 {close_window_key, CORE_NAME, Window Close, true, OptionKey},
-{run_key, CORE_NAME, Run Command, true, OptionKey},
-{main_menu_key, CORE_NAME, Popup Launch Menu, true, OptionKey},
 {lower_window_key, CORE_NAME, Window Lower, true, OptionKey},
 {toggle_window_maximized_key, CORE_NAME, Window Maximize, true, 
OptionKey},
 {minimize_window_key, CORE_NAME, Window Minimize, true, OptionKey},
 {toggle_window_maximized_horizontally_key, CORE_NAME, Window Maximize 
Horizontal, true, OptionKey},
 {toggle_window_maximized_vertically_key, CORE_NAME, Window Maximize 
Vertical, true, OptionKey},
 {show_desktop_key, CORE_NAME, Toggle Showing Desktop, true, OptionKey},
-{run_command_screenshot_key, CORE_NAME, Desktop Screenshot, true, 
OptionKey},
-{run_command_window_screenshot_key, CORE_NAME, Window Screenshot, 
true, OptionKey},
 {window_menu_key, CORE_NAME, Window Operations Menu, true, OptionKey},
 {toggle_window_shaded_key, CORE_NAME, Window Shade, true, OptionKey},
 {raise_window_key, CORE_NAME, Window Raise, true, OptionKey},
 {toggle_window_fullscreen_key, CORE_NAME, Window Fullscreen, true, 
OptionKey},
-{run_command11_key, CORE_NAME, Kill Window, true, OptionKey},
+{run_command11_key, commands, Kill Window, true, OptionKey},
 {initiate_key, move, Window Move, true, OptionKey},
 {initiate_key, resize, Window Resize, true, OptionKey},
 {rotate_right_key, rotate, Switch to Next Desktop, true, OptionKey},
@@ -171,13 +167,11 @@ const specialOptions[] =
 {autoraise_delay, CORE_NAME, AutoRaiseInterval, false, OptionInt},
 {flip_time, rotate, ElectricBorderDelay, false, OptionInt},
 
-{command_screenshot, CORE_NAME, NULL, true, OptionSpecial},
-{command_window_screenshot, CORE_NAME, NULL, true, OptionSpecial},
 {unmaximize_window_key, CORE_NAME, NULL, true, OptionSpecial},
 {maximize_window_key, CORE_NAME, NULL, true, OptionSpecial},
 {maximize_window_horizontally_key, CORE_NAME, NULL, true, OptionSpecial},
 {maximize_window_vertically_key, CORE_NAME, NULL, true, OptionSpecial},
-{command11, CORE_NAME, NULL, true, OptionSpecial},
+{command11, commands, NULL, true, OptionSpecial},
 {click_to_focus, CORE_NAME, NULL, false, OptionSpecial},
 {mode, resize, NULL, true, OptionSpecial},
 {number_of_desktops, CORE_NAME, Number, false, OptionSpecial},
@@ -334,15 +328,7 @@ readIntegratedOption (CCSSetting *setting)
break;
 
 case OptionSpecial:
-   if (specialOptions[option].settingName == command_screenshot)
-   {
-   ccsSetString (setting, ksnapshot);
-   }
-   else if (specialOptions[option].settingName == 
command_window_screenshot)
-   {
-   ccsSetString (setting, ksnapshot -c);
-   }
-   else if (specialOptions[option].settingName == command11)
+   if (specialOptions[option].settingName == 

compizconfig-backend-kconfig: Changes to 'upstream-unstable'

2008-06-02 Thread Sean Finney
 configure.in.in  |2 +-
 settings-backend/kconfig_backend.cpp |   18 --
 2 files changed, 1 insertion(+), 19 deletions(-)

New commits:
commit dbbd389bc5516ca72e8797ce59214400ead7ad39
Author: Guillaume Seguin [EMAIL PROTECTED]
Date:   Sat May 31 14:11:37 2008 +0200

* Bump version to 0.7.6

diff --git a/configure.in.in b/configure.in.in
index ebfc446..66d06ba 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.5)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.6)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit b756f5cb5122da697de4535ede77f63e32dbdb0f
Author: Danny Baumann [EMAIL PROTECTED]
Date:   Fri Apr 18 21:14:10 2008 +0200

Remove plane plugin integration.

diff --git a/settings-backend/kconfig_backend.cpp 
b/settings-backend/kconfig_backend.cpp
index 3bac424..e9d9ced 100644
--- a/settings-backend/kconfig_backend.cpp
+++ b/settings-backend/kconfig_backend.cpp
@@ -149,24 +149,6 @@ const specialOptions[] =
 {left_key, wall, Switch One Desktop to the Left, true, OptionKey},
 {right_key, wall, Switch One Desktop to the Right, true, OptionKey},
 
-{plane_up_key, plane, Switch One Desktop Up, true, OptionKey},
-{plane_down_key, plane, Switch One Desktop Down, true, OptionKey},
-{plane_left_key, plane, Switch One Desktop to the Left, true, 
OptionKey},
-{plane_right_key, plane, Switch One Desktop to the Right, true, 
OptionKey},
-
-{plane_to_1_key, plane, Switch to Desktop 1, true, OptionKey},
-{plane_to_2_key, plane, Switch to Desktop 2, true, OptionKey},
-{plane_to_3_key, plane, Switch to Desktop 3, true, OptionKey},
-{plane_to_4_key, plane, Switch to Desktop 4, true, OptionKey},
-{plane_to_5_key, plane, Switch to Desktop 5, true, OptionKey},
-{plane_to_6_key, plane, Switch to Desktop 6, true, OptionKey},
-{plane_to_7_key, plane, Switch to Desktop 7, true, OptionKey},
-{plane_to_8_key, plane, Switch to Desktop 8, true, OptionKey},
-{plane_to_9_key, plane, Switch to Desktop 9, true, OptionKey},
-{plane_to_10_key, plane, Switch to Desktop 10, true, OptionKey},
-{plane_to_11_key, plane, Switch to Desktop 11, true, OptionKey},
-{plane_to_12_key, plane, Switch to Desktop 12, true, OptionKey},
-
 {switch_to_1_key, vpswitch, Switch to Desktop 1, true, OptionKey},
 {switch_to_2_key, vpswitch, Switch to Desktop 2, true, OptionKey},
 {switch_to_3_key, vpswitch, Switch to Desktop 3, true, OptionKey},

commit deaca51ac9eaeec414043dde52872d7883b591b8
Author: Guillaume Seguin [EMAIL PROTECTED]
Date:   Fri Apr 4 00:21:35 2008 +0200

* Bump version to 0.7.5

diff --git a/configure.in.in b/configure.in.in
index 4292eaf..ebfc446 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.4)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.5)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



compizconfig-backend-kconfig: Changes to 'upstream-unstable'

2008-05-19 Thread Sean Finney
 configure.in.in  |2 
 settings-backend/kconfig_backend.cpp |  788 +++
 2 files changed, 434 insertions(+), 356 deletions(-)

New commits:
commit 466eb03fdb9bc120ca21d9c9055fbcda257f0507
Author: Guillaume Seguin [EMAIL PROTECTED]
Date:   Fri Apr 4 00:19:35 2008 +0200

* Bump version to 0.7.4

diff --git a/configure.in.in b/configure.in.in
index 1d09871..4292eaf 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.3)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.4)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit d3a2f81d0d446ce46ddc909065aad6aab99e3f0f
Author: Dennis Kasprzyk [EMAIL PROTECTED]
Date:   Tue Apr 1 01:28:25 2008 +0200

Fixed integrated bool settings.

diff --git a/settings-backend/kconfig_backend.cpp 
b/settings-backend/kconfig_backend.cpp
index 7153326..3bac424 100644
--- a/settings-backend/kconfig_backend.cpp
+++ b/settings-backend/kconfig_backend.cpp
@@ -1103,7 +1103,7 @@ CCSBoolToKde (CCSSetting *setting,
 
 Bool val;
 
-if (!ccsGetInt (setting, val) )
+if (!ccsGetBool (setting, val) )
return;
 
 if (cfg-readBoolEntry (specialOptions[num].kdeName) != bool (val) )

commit 877c0b23ec2590cae6d557a1f8953d6065e656fb
Author: Guillaume Seguin [EMAIL PROTECTED]
Date:   Thu Mar 6 23:12:50 2008 +0100

* Bump version to 0.7.3

diff --git a/configure.in.in b/configure.in.in
index 8e2df61..1d09871 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.2)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.3)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit e036af8d415864c7e546fecdfdd51e6ea34f4297
Author: Guillaume Seguin [EMAIL PROTECTED]
Date:   Thu Mar 6 23:11:16 2008 +0100

* Bump version to 0.7.2

diff --git a/configure.in.in b/configure.in.in
index 64eebaf..8e2df61 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.6.99)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.7.2)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP

commit 1a8104eb8cc271fce792da4576b9a5d87a9146f8
Author: Guillaume Seguin [EMAIL PROTECTED]
Date:   Sun Oct 21 12:53:32 2007 +0200

* Bump version to 0.6.99

diff --git a/configure.in.in b/configure.in.in
index b2624ce..64eebaf 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -1,6 +1,6 @@
 #MIN_CONFIG
 KDE_ENABLE_HIDDEN_VISIBILITY
-AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.5.2)
+AM_INIT_AUTOMAKE(compizconfig-backend-kconfig,0.6.99)
 
 AC_CHECK_RANDOM
 AC_CHECK_USLEEP
@@ -18,4 +18,4 @@ else
 ccs_libdir=`$PKG_CONFIG --variable=libdir libcompizconfig`  
 BACKENDDIR=$ccs_libdir/compizconfig
 fi
-AC_SUBST(BACKENDDIR)
\ No newline at end of file
+AC_SUBST(BACKENDDIR)

commit 8122b867fcd9a3e5e8ff855cf1ecc779cf794365
Author: Dennis Kasprzyk [EMAIL PROTECTED]
Date:   Thu Sep 20 00:06:19 2007 +0200

Fixed profile handling.

diff --git a/settings-backend/kconfig_backend.cpp 
b/settings-backend/kconfig_backend.cpp
index 3714458..7153326 100644
--- a/settings-backend/kconfig_backend.cpp
+++ b/settings-backend/kconfig_backend.cpp
@@ -223,6 +223,17 @@ const specialOptions[] =
 #define N_SOPTIONS (sizeof (specialOptions) / sizeof (struct _SpecialOption))
 
 static void
+createFile (QString name)
+{
+if (!QFile::exists(name))
+{
+   QFile file (name);
+   file.open (IO_WriteOnly | IO_Append);
+   file.close ();
+}
+}
+
+static void
 reload (unsigned int,
void *closure)
 {
@@ -653,9 +664,9 @@ getExistingProfiles (CCSContext *)
 {
QString str = (*it);
 
-   if (str.length()  8)
+   if (str.length()  9)
{
-   QString profile = str.right (str.length() - 8);
+   QString profile = str.right (str.length() - 9);
 
if (!profile.isEmpty() )
ret = ccsStringListAppend (ret, strdup (profile.ascii() ) );
@@ -1806,10 +1817,12 @@ readInit (CCSContext *c)
 
delete cFiles-main;
 
-   cFiles-main = new KSimpleConfig (configName);
-   ccsRemoveFileWatch (cFiles-watch);
QString wFile = KGlobal::dirs()-saveLocation (config,
QString::null, false) + configName;
+   createFile (wFile);
+   
+   cFiles-main = new KSimpleConfig (configName);
+   ccsRemoveFileWatch (cFiles-watch);
cFiles-watch = ccsAddFileWatch (wFile.ascii(), TRUE,
 reload, (void *) c);
 }
@@ -1840,10 +1853,13 @@ writeInit (CCSContext *c)
 
delete cFiles-main;
 
-   cFiles-main = new KSimpleConfig (configName);
-   ccsRemoveFileWatch (cFiles-watch);
QString wFile = KGlobal::dirs()-saveLocation (config,
QString::null, false) + configName;
+   
+   

compizconfig-backend-kconfig: Changes to 'upstream-unstable'

2007-11-11 Thread Sean Finney
New branch 'upstream-unstable' available with the following commits:


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]