Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtprintinfo / libUI / MotifUI / MainWindow.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: MainWindow.h /main/3 1995/11/06 09:42:47 rswiston $ */
24 /*                                                                      *
25  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
26  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
27  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
28  * (c) Copyright 1993, 1994 Novell, Inc.                                *
29  */
30
31 #ifndef MAINWINDOW_H
32 #define MAINWINDOW_H
33
34 #include "MotifUI.h"
35
36 class PopupMenuContainer;
37 class Button;
38
39 class MainWindow : public MotifUI {
40
41    friend void KeyboardPopupMenu(Widget, XEvent *, String *, Cardinal *);
42    friend void PopupMenu(Widget, XtPointer, XEvent *, Boolean *);
43
44  protected:
45
46    static XtActionsRec actions[];
47    static void KeyboardPopupMenu(Widget, XEvent *, String *, Cardinal *);
48    static void PopupMenu(Widget, XtPointer, XEvent *, Boolean *);
49
50    void PostMenu(MotifUI *, XEvent *);
51    PopupMenuContainer *popups;
52    Widget LastPopupMenu;
53    XtTranslations trans;
54    char *icon;
55    char *icon_name;
56
57    // Derived classes must define Initialize
58    virtual void Initialize() = 0;
59
60    void CreateMainWindow(MotifUI *parent, char *name, char *widgetName,
61                          char *icon, char *icon_name);
62
63  public:
64
65    MainWindow(MotifUI *parent,
66               char *name,
67               char *widgetName,
68               char *icon = NULL,
69               char *icon_name = NULL);
70
71    MainWindow(char *category,
72               MotifUI *parent,
73               char *name,
74               char *widgetName,
75               char *icon = NULL,
76               char *icon_name = NULL);
77    virtual ~MainWindow();
78
79    void IconFile(char *icon);
80    void IconName(char *icon_name);
81    char *IconFile() { return icon; }
82    char *IconName() { return icon_name; }
83
84    Button *AddAction(char *name, char *category, ButtonCallback callback,
85                      void *callback_data, char *mnemonic = NULL,
86                      char *acceleratorText = NULL, char *accelerator = NULL);
87    void RegisterPopup(MotifUI *object);
88    void AddSep(char *category);
89
90    void SetWorkWindow(MotifUI *obj);
91
92    BaseUI *PopupObject;
93    int PopupObjectUniqueID;
94
95    const UI_Class UIClass()            { return MAIN_WINDOW; }
96    const char *const UIClassName()     { return "MainWindow"; }
97
98 };
99
100 #endif /* MAINWINDOW_H */