Source: /app/hbasic/hbasic/hbdata/hbtoolbarentry.h
|
|
|
|
#ifndef HBTOOLBAR_ENTRY_H
#define HBTOOLBAR_ENTRY_H
class QWidget;
class HBCommand;
#include
#include
#include
#include
#include
#include "hbobject.h"
/* --------------------------------- */
/* Define structures to store icons. */
class HBToolBarEntry : public QToolButton, public HBObject
{
public:
HBToolBarEntry( char *name, QWidget *parent );
HBCommand *command_ptr;
private:
/* command_id identifies the command that should be executed if the button will */
/* be triggered. Unique command id's will be generated when creating command list */
/* entries for each command. */
QIconSet icon;
QString text;
QKeySequence key;
QString whats_this;
QString info;
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |