Search
lxdream.org :: lxdream/src/cocoaui/cocoaui.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/cocoaui/cocoaui.h
changeset 1028:f99eeaf084c2
prev874:e3007b8799f3
next1036:af7b0c5905dd
author nkeynes
date Mon Jun 22 01:13:16 2009 +0000 (14 years ago)
permissions -rw-r--r--
last change Fix disc type breakage introduced in last refactor
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Core Cocoa-based user interface
     5  *
     6  * Copyright (c) 2008 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_cocoaui_H
    20 #define lxdream_cocoaui_H
    22 #import <AppKit/AppKit.h>
    23 #include "lxdream.h"
    24 #include "gettext.h"
    26 #ifdef __cplusplus
    27 extern "C" {
    28 #endif
    30 #define NS_(x) [NSString stringWithUTF8String: _(x)]
    32 /* Standard sizing */
    33 #define TEXT_HEIGHT 22
    34 #define LABEL_HEIGHT 17
    35 #define TEXT_GAP 10
    37 /**
    38  * Convenience method to create a new text label in the specified parent.
    39  */
    40 NSTextField *cocoa_gui_add_label(NSView *parent, NSString *title, NSRect frame);
    42 @interface LxdreamVideoView : NSView
    43 {
    44     BOOL isGrabbed;
    45     id delegate;
    46 }
    47 - (void) setDelegate: (id)other;
    48 - (id)delegate;
    49 - (void) setIsGrabbed: (BOOL)grabbed;
    50 @end
    52 @interface LxdreamMainWindow : NSWindow 
    53 {
    54     LxdreamVideoView *video;
    55     NSTextField *status;
    56     BOOL isGrabbed;
    57     BOOL useGrab;
    58     BOOL isFullscreen;
    59     NSRect savedFrame;
    60 }
    61 - (id)initWithContentRect:(NSRect)contentRect;
    62 - (void)setStatusText:(const gchar *)text;
    63 - (void)updateTitle;
    64 - (void)setRunning:(BOOL)isRunning;
    65 - (BOOL)isGrabbed;
    66 - (void)setIsGrabbed:(BOOL)grab;
    67 - (void)setUseGrab: (BOOL)grab;
    68 - (BOOL)isFullscreen;
    69 - (void)setFullscreen: (BOOL)fs;
    70 @end
    72 @interface LxdreamPrefsPane : NSView
    73 {
    74     int headerHeight;
    75 }
    76 - (id)initWithFrame: (NSRect)frameRect title:(NSString *)title;
    77 - (int)contentHeight;
    78 @end
    80 @interface KeyBindingEditor: NSTextView
    81 {
    82     BOOL isPrimed;
    83     NSString *lastValue;
    84 }
    85 @end
    87 @interface KeyBindingField : NSTextField
    88 {
    89 }
    90 @end
    92 @interface LxdreamPrefsPanel : NSPanel
    93 {
    94     NSArray *toolbar_ids;
    95     NSArray *toolbar_defaults;
    96     NSDictionary *toolbar_items;
    97     NSView *path_pane, *ctrl_pane;
    98     KeyBindingEditor *binding_editor;
    99 }
   100 - (id)initWithContentRect:(NSRect)contentRect;
   101 @end
   104 LxdreamMainWindow *cocoa_gui_create_main_window();
   105 NSMenu *cocoa_gdrom_menu_new();
   106 NSView *video_osx_create_drawable();
   107 void cocoa_gui_show_preferences();
   108 NSView *cocoa_gui_create_prefs_controller_pane();
   109 NSView *cocoa_gui_create_prefs_path_pane();
   112 #ifdef __cplusplus
   113 }
   114 #endif
   116 #endif /* lxdream_cocoaui_H */
.