gambas-source-code/gb.gtk/src/gmainwindow.h
Benoît Minisini 932253491b [DEVELOPMENT ENVIRONMENT]
* NEW: New search & replace dialog that replaces the old one. Browsing the 
  entire project and searching inside forms are not implemented yet.
* NEW: Remove the search feature inside the console window, as now the new
  search & replace dialog can do the job.

[GB.FORM]
* NEW: MenuButton.Arrow is a new property to define if the little arrow
  button has to be shown. If Arrow is FALSE, then clicking on the 
  MenuButton automatically opens the menu.


[GB.GTK]
* NEW: Window.Opacity is a new property for defining the opacity of a 
  window with an integer between 0 and 100. That works only if you run a
  composited desktop.

[GB.QT4]
* NEW: Window.Opacity is a new property for defining the opacity of a 
  window with an integer between 0 and 100. That works only if you run a
  composited desktop.


git-svn-id: svn://localhost/gambas/trunk@2885 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2010-04-12 01:27:33 +00:00

171 lines
4.2 KiB
C++

/***************************************************************************
gmainwindow.h
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#ifndef __GMAINWINDOW_H
#define __GMAINWINDOW_H
#include "gbutton.h"
class gMainWindow : public gContainer
{
public:
gMainWindow(int plug = 0);
gMainWindow(gContainer *parent);
~gMainWindow();
//"Properties"
bool hasBorder();
bool isResizable();
int getType();
gPicture *icon() { return _icon; }
gPicture *picture() { return _picture; }
bool mask() { return _mask; }
int menuCount();
bool modal();
const char* text();
bool topOnly();
bool skipTaskBar();
bool minimized();
bool maximized();
bool fullscreen();
bool getSticky();
int getStacking();
bool isPersistent() { return persistent; }
bool isClosed() { return !opened; }
bool isHidden() { return _hidden; }
int controlCount();
gControl *getControl(char *name);
gControl *getControl(int i);
void setBorder(bool b);
void setResizable(bool b);
void setType(int type);
void setIcon(gPicture *pic);
void setMask(bool vl);
void setPicture(gPicture *pic);
void setText(const char *txt);
void setTopOnly(bool vl);
void setSkipTaskBar(bool b);
void setMinimized(bool vl);
void setMaximized(bool vl);
void setFullscreen(bool vl);
void setSticky(bool vl);
void setStacking(int vl);
void setPersistent(bool vl);
virtual void setVisible(bool vl);
virtual void setRealBackground(gColor vl);
virtual void setFont(gFont *ft);
virtual int clientWidth();
virtual int clientHeight();
virtual int clientX();
virtual int clientY();
virtual int containerX();
virtual int containerY();
bool spontaneous() { return !_not_spontaneous; }
void setMenuBarVisible(bool v);
bool isMenuBarVisible();
double opacity();
void setOpacity(double v);
//"Methods"
void center();
void showModal();
void raise();
virtual void move(int x, int y);
virtual void resize(int w, int h);
bool close();
virtual void reparent(gContainer *newpr, int x, int y);
//"Signals"
void (*onOpen)(gMainWindow *sender);
void (*onShow)(gMainWindow *sender);
void (*onHide)(gMainWindow *sender);
void (*onMove)(gMainWindow *sender);
void (*onResize)(gMainWindow *sender);
bool (*onClose)(gMainWindow *sender);
void (*onActivate)(gMainWindow *sender);
void (*onDeactivate)(gMainWindow *sender);
//"Static"
static GList *windows;
static int count() { return g_list_length(windows); }
static gMainWindow *get(int index) { return (gMainWindow *)g_list_nth_data(windows, index); }
static gMainWindow *_active;
static void setActiveWindow(gControl *control);
static gMainWindow *_current;
//"Private"
void initialize();
void drawMask();
void initWindow();
void emitOpen();
void remap();
bool doClose();
void afterShow();
void checkMenuBar();
int menuBarHeight();
void configure();
void embedMenuBar(GtkWidget *border);
GtkWindowGroup *group;
GtkAccelGroup *accel;
GtkMenuBar *menuBar;
GtkFixed *layout;
int stack;
int _type;
gPicture *_icon;
gPicture *_picture;
char *_title;
GdkPixmap *_background;
GtkStyle *_style;
gControl *focus;
gButton *_default;
gButton *_cancel;
int _next_w, _next_h;
guint _next_timer;
unsigned _mask : 1;
unsigned top_only : 1;
unsigned _resized : 1;
unsigned persistent : 1;
unsigned sticky : 1;
unsigned opened : 1;
unsigned _closing : 1;
unsigned _not_spontaneous : 1;
unsigned _skip_taskbar : 1;
unsigned _masked : 1;
unsigned _xembed : 1;
unsigned _activate : 1;
unsigned _hidden : 1;
unsigned _hideMenuBar : 1;
unsigned _showMenuBar : 1;
};
#endif