all repos — tint2 @ 23d943376db540810e679feb16be0e64c4d858e4

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

cleanup

git-svn-id: http://tint2.googlecode.com/svn/trunk@491 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
lorthiois@bbsoft.fr lorthiois@bbsoft.fr@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

23d943376db540810e679feb16be0e64c4d858e4

parent

20a48674c949bafbc6e0810b6aacbf6b0bd1172f

2 files changed, 10 insertions(+), 1 deletions(-)

jump to
M src/tint2conf/CMakeLists.txtsrc/tint2conf/CMakeLists.txt

@@ -19,6 +19,7 @@ ${GTK2_INCLUDE_DIRS} )

set(SOURCES ../util/common.c main.c + properties.c theme_view.c ) add_executable( tint2conf ${SOURCES} ) target_link_libraries( tint2conf ${X11_LIBRARIES}
M src/tint2conf/main.csrc/tint2conf/main.c

@@ -33,6 +33,7 @@ #include "version.h"

#endif #include "common.h" #include "theme_view.h" +#include "properties.h" #define SNAPSHOT_TICK 190

@@ -105,8 +106,8 @@ " <toolitem action='ThemeProperties'/>"

" <toolitem action='ViewApply'/>" " </toolbar>" " <popup name='ThemePopup'>" - " <menuitem action='EditRefresh'/>" " <menuitem action='ThemeProperties'/>" + " <menuitem action='EditRefresh'/>" " <menuitem action='ViewApply'/>" " <separator/>" " <menuitem action='ThemeDelete'/>"

@@ -339,6 +340,12 @@

sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(g_theme_view)); if (gtk_tree_selection_get_selected(GTK_TREE_SELECTION(sel), &model, &iter)) { gtk_tree_model_get(model, &iter, COL_THEME_FILE, &file, -1); +/* + GtkWidget *prop; + prop = create_properties(); + gtk_window_present(GTK_WINDOW(prop)); + //printf("menuProperties : fin\n"); +*/ cmd = g_strdup_printf("%s \'%s\' &", g_cmd_property, file); printf("cmd %s\n", cmd);

@@ -346,6 +353,7 @@ system(cmd);

g_free(cmd); g_free(file); + } }