source: trunk/gui/class_c/nomnotebook.c@ 207

Last change on this file since 207 was 207, checked in by cinc, 18 years ago

Added code to cope with changed *.ih file format.

File size: 4.9 KB
Line 
1/* ***** BEGIN LICENSE BLOCK *****
2* Version: CDDL 1.0/LGPL 2.1
3*
4* The contents of this file are subject to the COMMON DEVELOPMENT AND
5* DISTRIBUTION LICENSE (CDDL) Version 1.0 (the "License"); you may not use
6* this file except in compliance with the License. You may obtain a copy of
7* the License at http://www.sun.com/cddl/
8*
9* Software distributed under the License is distributed on an "AS IS" basis,
10* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11* for the specific language governing rights and limitations under the
12* License.
13*
14* The Original Code is "NOM" Netlabs Object Model
15*
16* The Initial Developer of the Original Code is
17* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
18* Portions created by the Initial Developer are Copyright (C) 2005-2006
19* the Initial Developer. All Rights Reserved.
20*
21* Contributor(s):
22*
23* Alternatively, the contents of this file may be used under the terms of
24* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
25* case the provisions of the LGPL are applicable instead of those above. If
26* you wish to allow use of your version of this file only under the terms of
27* the LGPL, and not to allow others to use your version of this file under
28* the terms of the CDDL, indicate your decision by deleting the provisions
29* above and replace them with the notice and other provisions required by the
30* LGPL. If you do not delete the provisions above, a recipient may use your
31* version of this file under the terms of any one of the CDDL or the LGPL.
32*
33* ***** END LICENSE BLOCK ***** */
34/*
35 * And remember, phase 3 is near...
36 */
37#ifndef NOM_NOMNoteBook_IMPLEMENTATION_FILE
38#define NOM_NOMNoteBook_IMPLEMENTATION_FILE
39#endif
40
41#define INCL_DOS
42#include <os2.h>
43
44#include <nom.h>
45#include <nomtk.h>
46
47#include <string.h>
48#include <glib.h>
49
50#include <gtk/gtk.h>
51
52#include "nomguitk.h"
53#include "nomnotebook.ih"
54
55
56NOM_Scope CORBA_long NOMLINK impl_NOMNoteBook_prependPage(NOMNoteBook* nomSelf,
57 const PGtkWidget pWidget, const PGtkWidget pLabel,
58 CORBA_Environment *ev)
59{
60/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
61 return gtk_notebook_prepend_page_menu (GTK_NOTEBOOK (NOMNoteBook_queryWindowHandle(nomSelf, ev)), pWidget, pLabel,
62 NULL);
63}
64
65NOM_Scope CORBA_long NOMLINK impl_NOMNoteBook_appendPage(NOMNoteBook* nomSelf,
66 const PGtkWidget pWidget, const PGtkWidget pLabel,
67 CORBA_Environment *ev)
68{
69/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
70 return gtk_notebook_append_page_menu (GTK_NOTEBOOK (NOMNoteBook_queryWindowHandle(nomSelf, ev)), pWidget, pLabel,
71 NULL);
72}
73
74NOM_Scope void NOMLINK impl_NOMNoteBook_enablePopupMenu(NOMNoteBook* nomSelf, CORBA_Environment *ev)
75{
76/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
77
78 gtk_notebook_popup_enable(GTK_NOTEBOOK(NOMNoteBook_queryWindowHandle(nomSelf, ev)));
79}
80
81NOM_Scope void NOMLINK impl_NOMNoteBook_disablePopupMenu(NOMNoteBook* nomSelf, CORBA_Environment *ev)
82{
83/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
84
85 gtk_notebook_popup_disable(GTK_NOTEBOOK(NOMNoteBook_queryWindowHandle(nomSelf, ev)));
86}
87
88NOM_Scope void NOMLINK impl_NOMNoteBook_switchToNextPage(NOMNoteBook* nomSelf, CORBA_Environment *ev)
89{
90/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
91 gtk_notebook_next_page(GTK_NOTEBOOK(NOMNoteBook_queryWindowHandle(nomSelf, ev)));
92}
93
94NOM_Scope void NOMLINK impl_NOMNoteBook_switchToPrevPage(NOMNoteBook* nomSelf, CORBA_Environment *ev)
95{
96/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
97 gtk_notebook_prev_page(GTK_NOTEBOOK(NOMNoteBook_queryWindowHandle(nomSelf, ev)));
98}
99
100NOM_Scope void NOMLINK impl_NOMNoteBook_switchToPage(NOMNoteBook* nomSelf, const gint iPageNum, CORBA_Environment *ev)
101{
102/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
103 gtk_notebook_set_current_page(GTK_NOTEBOOK(NOMNoteBook_queryWindowHandle(nomSelf, ev)), iPageNum);
104}
105
106/* orbit-idl-c-stubs.c, cs_output_stub line 347 */
107NOM_Scope void NOMLINK impl_NOMNoteBook_nomInit(NOMNoteBook* nomSelf, CORBA_Environment *ev)
108{
109 GtkWidget* gtkNoteBook;
110/* NOMNoteBookData* nomThis=NOMNoteBookGetData(nomSelf); */
111
112 NOMNoteBook_nomInit_parent((NOMObject*)nomSelf, ev);
113
114 /* Create the notebook */
115 gtkNoteBook=gtk_notebook_new();
116 /* Make sure we have a reference to the class so the garbage collector
117 doesn't unload us */
118 g_object_set_data(G_OBJECT(gtkNoteBook), NOMOBJECT_KEY_STRING, nomSelf);
119 NOMNoteBook_setWindowHandle(nomSelf, gtkNoteBook, NULLHANDLE);
120
121 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(gtkNoteBook), GTK_POS_TOP);
122 _enablePopupMenu(nomSelf, ev);
123 gtk_widget_show(gtkNoteBook);
124}
125
Note: See TracBrowser for help on using the repository browser.