403Webshell
Server IP : 82.208.35.60  /  Your IP : 216.73.216.89
Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31
System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64
User : studiokobylisy_cz ( 1008)
PHP Version : 7.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/ports/x11-clocks/wmfishtime/files/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/ports/x11-clocks/wmfishtime/files/patch-fishmon.c
--- fishmon.c.orig	2004-05-12 23:55:59 UTC
+++ fishmon.c
@@ -152,6 +152,10 @@ static char month[12][4] = { "JAN", "FEB
 
 int main(int argc, char **argv)
 {
+#if (GTK_MAJOR_VERSION >= 2)
+    /* This is needed to proper dockapp work on >=GTK+=2.18 */
+    setenv("GDK_NATIVE_WINDOWS", "1", 0);
+#endif
     int ch;
     GdkEvent *event;
 #ifdef PRO
@@ -648,6 +652,9 @@ static void make_new_fishmon_dockapp(voi
 
     /* make a copy for the iconwin - parameters are the same */
     memcpy(&attri, &attr, sizeof(GdkWindowAttr));
+#if (GTK_MAJOR_VERSION >= 2)
+    attri.window_type = GTK_WINDOW_CHILD;
+#endif
 
     sizehints.flags = USSize;
     sizehints.width = 64;
@@ -679,7 +686,11 @@ static void make_new_fishmon_dockapp(voi
     wmhints.window_group = win;
     wmhints.flags =
 	StateHint | IconWindowHint | IconPositionHint | WindowGroupHint;
+#if (GTK_MAJOR_VERSION >= 2)
+    gdk_window_show(bm.iconwin);
+#else
     XSetWMHints(GDK_WINDOW_XDISPLAY(bm.win), win, &wmhints);
+#endif
 
     bm.gc = gdk_gc_new(bm.win);
 
@@ -1020,27 +1031,29 @@ static void parse_options(int argc, char
 {
     static int ch = 0;
     static struct option long_opts[] = {
-	{ "h",		no_argument, NULL, 1 },
-	{ "help",	no_argument, NULL, 1 },
-	{ "v",		no_argument, NULL, 2 },
-	{ "version",	no_argument, NULL, 2 },
-	{ "c",		no_argument, &enable_check_mail, 1 },
-	{ "check-mail", no_argument, &enable_check_mail, 1 },
-	{ "b",		no_argument, &broken_wm, 1 },
-	{ "broken",	no_argument, &broken_wm, 1 },
+	{ "help",	no_argument, NULL, 'h' },
+	{ "version",	no_argument, NULL, 'v' },
+	{ "check-mail", no_argument, &enable_check_mail, 'c' },
+	{ "broken",	no_argument, &broken_wm, 'b' },
 	{ 0, 0, 0, 0 }
     };
 
-    while ((ch = getopt_long_only(argc, argv, "", long_opts, NULL)) != -1) {
+    while ((ch = getopt_long(argc, argv, "hvcb", long_opts, NULL)) != -1) {
 	switch (ch) {
-	    case 1:
+	    case 'h':
 		do_help();
 		exit(0);
 		break;
-	    case 2:
+	    case 'v':
 		do_version();
 		exit(0);
 		break;
+	    case 'c':
+		enable_check_mail = 1;
+		break;
+	    case 'b':
+		broken_wm = 1;
+		break;
 	}
     }
 }

Youez - 2016 - github.com/yon3zu
LinuXploit