9de02c9cac
* BUG: The informer algorithm was redesigned. Now a sub-process is launched for each component that should be analyzed, and LD_PRELOAD is used to load the component shared library before the process is launched. Otherwise, some component may crash. [GB.DRAW] * BUG: Correctly initialize color properties of the Draw class at Draw.Begin(). * NEW: Draw.FillRect() is a new method to draw a filled rectangle with the specified color. * NEW: Draw.Clear() is a new method that clears the drawing device with its background color. [GB.FORM.MDI] * NEW: Do not use BackColor and ForeColor properties anymore. [GB.GTK] * NEW: Control.Backcolor and Control.Forecolor properties were removed. * BUG: Desktop.Resolution now uses the accurate GTK+ API. * BUG: Setting the ListBox.List to NULL property does not lock the ListBox control anymore. * BUG: Fix the Font object management. Using Font properties should not crash anymore. * BUG: Image.Save() and Picture.Save() now understand the "~" shortcut in path names. [GB.QT] * NEW: Control.Backcolor and Control.Forecolor properties were removed. * NEW: Do not check if we should quit too often. * NEW: Allow windows to be closed during a WAIT instruction as in other components. I do not know why it was forbidden before. * NEW: Prevent a crash in arrangement routines if a child widget is not associated with a Gambas control anymore. [GB.QT4] * NEW: Control.Backcolor and Control.Forecolor properties were removed. * NEW: The source code is now up to date with gb.qt. But many things do not work as expected! [GB.QT4.EXT] * NEW: The source code is now up to date with gb.qt.ext. But many things do not work as expected! git-svn-id: svn://localhost/gambas/trunk@1776 867c0c6c-44f3-4631-809d-bfa615b0a4ec
94 lines
2.1 KiB
C++
94 lines
2.1 KiB
C++
/***************************************************************************
|
|
|
|
CMenu.h
|
|
|
|
The Menu class
|
|
|
|
(c) 2000-2007 Benoit 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 1, 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 __CMENU_H
|
|
#define __CMENU_H
|
|
|
|
#include "gambas.h"
|
|
|
|
#include <QAction>
|
|
#include <QMenu>
|
|
#include <QMenuBar>
|
|
#include <QKeySequence>
|
|
#include <QList>
|
|
|
|
#include "CWidget.h"
|
|
#include "CPicture.h"
|
|
|
|
#ifndef __CMENU_CPP
|
|
extern GB_DESC CMenuDesc[];
|
|
extern GB_DESC CMenuChildrenDesc[];
|
|
#else
|
|
|
|
#define THIS OBJECT(CMENU)
|
|
//#define CONTROL OBJECT(CWIDGET)
|
|
#define ACTION ((QAction *)((CWIDGET *)_object)->widget)
|
|
|
|
#define CMENU_is_toplevel(_menu) (GB.Is((_menu)->parent, CLASS_Window))
|
|
|
|
#endif
|
|
|
|
typedef
|
|
struct _CMENU {
|
|
CWIDGET widget;
|
|
void *parent;
|
|
//QList<struct _CMENU *> children;
|
|
//QMenu *parentMenu;
|
|
//QMenuBar *parentMenuBar;
|
|
QWidget *toplevel;
|
|
QMenu *menu;
|
|
CPICTURE *picture;
|
|
unsigned deleted : 1;
|
|
unsigned toggle : 1;
|
|
unsigned noshortcut : 1;
|
|
unsigned exec : 1;
|
|
}
|
|
CMENU;
|
|
|
|
typedef
|
|
QList<CMENU *> CMenuList;
|
|
|
|
|
|
class CMenu : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static CMenu manager;
|
|
static QHash<QAction *, CMENU *> dict;
|
|
|
|
//static void unrefChildren(QWidget *wid);
|
|
static void enableAccel(CMENU *item, bool enable);
|
|
static void hideSeparators(CMENU *item);
|
|
|
|
public slots:
|
|
|
|
void slotTriggered(QAction *);
|
|
void slotDestroyed();
|
|
void slotShown();
|
|
void slotHidden();
|
|
};
|
|
|
|
#endif
|