X11Application.h revision 4642e01f
1/* X11Application.h -- subclass of NSApplication to multiplex events
2
3   Copyright (c) 2002-2007 Apple Inc. All rights reserved.
4
5   Permission is hereby granted, free of charge, to any person
6   obtaining a copy of this software and associated documentation files
7   (the "Software"), to deal in the Software without restriction,
8   including without limitation the rights to use, copy, modify, merge,
9   publish, distribute, sublicense, and/or sell copies of the Software,
10   and to permit persons to whom the Software is furnished to do so,
11   subject to the following conditions:
12
13   The above copyright notice and this permission notice shall be
14   included in all copies or substantial portions of the Software.
15
16   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19   NONINFRINGEMENT.  IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT
20   HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23   DEALINGS IN THE SOFTWARE.
24
25   Except as contained in this notice, the name(s) of the above
26   copyright holders shall not be used in advertising or otherwise to
27   promote the sale, use or other dealings in this Software without
28   prior written authorization. */
29
30#ifndef X11APPLICATION_H
31#define X11APPLICATION_H 1
32
33#if __OBJC__
34
35#import "X11Controller.h"
36
37@interface X11Application : NSApplication {
38    X11Controller *_controller;
39
40    unsigned int _x_active :1;
41}
42
43- (void) set_controller:controller;
44- (void) set_window_menu:(NSArray *)list;
45
46- (int) prefs_get_integer:(NSString *)key default:(int)def;
47- (const char *) prefs_get_string:(NSString *)key default:(const char *)def;
48- (float) prefs_get_float:(NSString *)key default:(float)def;
49- (int) prefs_get_boolean:(NSString *)key default:(int)def;
50- (NSArray *) prefs_get_array:(NSString *)key;
51- (void) prefs_set_integer:(NSString *)key value:(int)value;
52- (void) prefs_set_float:(NSString *)key value:(float)value;
53- (void) prefs_set_boolean:(NSString *)key value:(int)value;
54- (void) prefs_set_array:(NSString *)key value:(NSArray *)value;
55- (void) prefs_set_string:(NSString *)key value:(NSString *)value;
56- (void) prefs_synchronize;
57
58- (OSX_BOOL) x_active;
59@end
60
61extern X11Application *X11App;
62
63#endif /* __OBJC__ */
64
65void X11ApplicationSetWindowMenu (int nitems, const char **items,
66					 const char *shortcuts);
67void X11ApplicationSetWindowMenuCheck (int idx);
68void X11ApplicationSetFrontProcess (void);
69void X11ApplicationSetCanQuit (int state);
70void X11ApplicationServerReady (void);
71void X11ApplicationShowHideMenubar (int state);
72
73void X11ApplicationMain(int argc, char **argv, char **envp);
74
75extern int X11EnableKeyEquivalents;
76extern int quartzHasRoot, quartzEnableRootless, quartzFullscreenMenu;
77
78#define PREFS_APPSMENU              "apps_menu"
79#define PREFS_FAKEBUTTONS           "enable_fake_buttons"
80#define PREFS_SYSBEEP               "enable_system_beep"
81#define PREFS_KEYEQUIVS             "enable_key_equivalents"
82#define PREFS_FULLSCREEN_HOTKEYS    "fullscreen_hotkeys"
83#define PREFS_FULLSCREEN_MENU       "fullscreen_menu"
84#define PREFS_SYNC_KEYMAP           "sync_keymap"
85#define PREFS_DEPTH                 "depth"
86#define PREFS_NO_AUTH               "no_auth"
87#define PREFS_NO_TCP                "nolisten_tcp"
88#define PREFS_DONE_XINIT_CHECK      "done_xinit_check"
89#define PREFS_NO_QUIT_ALERT         "no_quit_alert"
90#define PREFS_FAKE_BUTTON2          "fake_button2"
91#define PREFS_FAKE_BUTTON3          "fake_button3"
92#define PREFS_APPKIT_MODIFIERS      "appkit_modifiers"
93#define PREFS_WINDOW_ITEM_MODIFIERS "window_item_modifiers"
94#define PREFS_ROOTLESS              "rootless"
95#define PREFS_TEST_EXTENSIONS       "enable_test_extensions"
96#define PREFS_XP_OPTIONS            "xp_options"
97#define PREFS_LOGIN_SHELL           "login_shell"
98#define PREFS_CLICK_THROUGH         "wm_click_through"
99#define PREFS_FFM                   "wm_ffm"
100#define PREFS_FOCUS_ON_NEW_WINDOW   "wm_focus_on_new_window"
101
102#define PREFS_SYNC_PB                "sync_pasteboard"
103#define PREFS_SYNC_PB_TO_CLIPBOARD   "sync_pasteboard_to_clipboard"
104#define PREFS_SYNC_PB_TO_PRIMARY     "sync_pasteboard_to_primary"
105#define PREFS_SYNC_CLIPBOARD_TO_PB   "sync_clipboard_to_pasteboard"
106#define PREFS_SYNC_PRIMARY_ON_SELECT "sync_primary_on_select"
107
108#endif /* X11APPLICATION_H */
109