/[svn]/gigedit/trunk/src/gigedit/main.cpp
ViewVC logotype

Contents of /gigedit/trunk/src/gigedit/main.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3192 - (show annotations) (download)
Fri May 19 18:09:37 2017 UTC (6 years, 11 months ago) by schoenebeck
File size: 3044 byte(s)
* GTK3: Bringing back icons and keyboard accelerators / mnemonics for menus
  and buttons with GTK3; Cudos to those GTK heros who thought it might be
  a clever idea to simply remove such features for all users, all devices
  and all apps by default with GTK3!
* Debian: Added build-dependency to either libgtk2.0-dev or libgtk-3-dev.
* Debian: Added dependency to to either gnome-icon-theme or
  hicolor-icon-theme.
* Bumped version (1.0.0.svn48).

1 /*
2 * Copyright (C) 2006, 2007 Andreas Persson
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2, or (at
7 * your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with program; see the file COPYING. If not, write to the Free
16 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17 * 02110-1301 USA.
18 */
19
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <gtk/gtk.h>
25 #include "gigedit.h"
26 #include <gtkmm.h>
27
28 #if GTKMM_MAJOR_VERSION >= 3
29
30 /**
31 * This is required since GTK 3, because those GTK super heros came up with
32 * the clever idea to simply disable things like icons and keyboard shortcuts
33 * for menus and for buttons by default for all users, all devices and all
34 * apps. Yey! Seriously, I have no idea what came on their mind to find that
35 * was a good idea!
36 */
37 static void enforceGtk3Settings(int argc, char* argv[]) {
38 gtk_init(&argc, &argv);
39
40 // got not behavior change on those 2 settings, so ignoring them for now,
41 // actually I though I could use them to show the mnemonics in the GTK 3
42 // menus again, but it seems that was entirely removed from around GTK 3.10.
43 //g_object_set(gtk_settings_get_default(), "gtk-auto-mnemonics", false, NULL);
44 //g_object_set(gtk_settings_get_default(), "gtk-can-change-accels", true, NULL);
45
46 // bring back keyboard accelerators with GTK 3
47 g_object_set(gtk_settings_get_default(), "gtk-enable-accels", true, NULL);
48 g_object_set(gtk_settings_get_default(), "gtk-enable-mnemonics", true, NULL);
49
50 // bring back icons with GTK 3
51 g_object_set(gtk_settings_get_default(), "gtk-menu-images", true, NULL);
52 g_object_set(gtk_settings_get_default(), "gtk-button-images", true, NULL);
53
54 // who knows ... one day those GTK "masterminds" decide to disable tooltips by default as well
55 g_object_set(gtk_settings_get_default(), "gtk-enable-tooltips", true, NULL);
56 }
57
58 #endif // GTKM 3
59
60 #if defined(WIN32)
61 #include <windows.h>
62
63 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
64 LPSTR lpCmdLine, int nCmdShow)
65 {
66 #if GTKMM_MAJOR_VERSION >= 3
67 enforceGtk3Settings(__argc, __argv);
68 #endif
69
70 GigEdit app;
71 return app.run(__argc, __argv);
72 }
73
74 #else
75
76 int main(int argc, char* argv[])
77 {
78 #if GTKMM_MAJOR_VERSION >= 3
79 enforceGtk3Settings(argc, argv);
80 #endif
81
82 #ifdef __APPLE__
83 // remove the argument added by the OS
84 if (argc > 1 && strncmp(argv[1], "-psn", 4) == 0) {
85 argc--;
86 for (int i = 1 ; i < argc ; i++) {
87 argv[i] = argv[i + 1];
88 }
89 }
90 #endif
91 GigEdit app;
92 return app.run(argc, argv);
93 }
94
95 #endif

  ViewVC Help
Powered by ViewVC