hierarchyview.h

来自「qt-x11-free-3.0.3.tar.gz minigui图形界面工具」· C头文件 代码 · 共 220 行

H
220
字号
/************************************************************************ Copyright (C) 2000 Trolltech AS.  All rights reserved.**** This file is part of Qt Designer.**** This file may be distributed and/or modified under the terms of the** GNU General Public License version 2 as published by the Free Software** Foundation and appearing in the file LICENSE.GPL included in the** packaging of this file.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.**** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#ifndef HIRARCHYVIEW_H#define HIRARCHYVIEW_H#include <qvariant.h>#include <qlistview.h>#include <qtabwidget.h>#include <qguardedptr.h>#include <private/qcom_p.h>#include "../interfaces/classbrowserinterface.h"class FormWindow;class QCloseEvent;class QPopupMenu;class QKeyEvent;class QMouseEvent;class QWizard;class SourceEditor;class HierarchyItem : public QListViewItem{public:    enum Type {	Widget,	SlotParent,	Public,	Protected,	Private,	Slot,	DefinitionParent,	Definition,	Event,	EventFunction    };    HierarchyItem( Type type, QListViewItem *parent,		   const QString &txt1, const QString &txt2, const QString &txt3 );    HierarchyItem( Type type, QListView *parent,		   const QString &txt1, const QString &txt2, const QString &txt3 );    void paintCell( QPainter *p, const QColorGroup &cg, int column, int width, int align );    void updateBackColor();    void setWidget( QWidget *w );    QWidget *widget() const;    void setText( int col, const QString &txt ) { if ( !txt.isEmpty() ) QListViewItem::setText( col, txt ); }    int rtti() const { return (int)typ; }private:    void okRename( int col );    void cancelRename( int col );private:    QColor backgroundColor();    QColor backColor;    QWidget *wid;    Type typ;};class HierarchyList : public QListView{    Q_OBJECTpublic:    HierarchyList( QWidget *parent, FormWindow *fw, bool doConnects = TRUE );    virtual void setup();    virtual void setCurrent( QWidget *w );    void setOpen( QListViewItem *i, bool b );    void changeNameOf( QWidget *w, const QString &name );    void changeDatabaseOf( QWidget *w, const QString &info );    void setFormWindow( FormWindow *fw ) { formWindow = fw; }    void drawContentsOffset( QPainter *p, int ox, int oy,			     int cx, int cy, int cw, int ch ) {	setUpdatesEnabled( FALSE );	triggerUpdate();	setUpdatesEnabled( TRUE );	QListView::drawContentsOffset( p, ox, oy, cx, cy, cw, ch );    }    void insertEntry( QListViewItem *i, const QPixmap &pix = QPixmap(), const QString &s = QString::null );protected:    void keyPressEvent( QKeyEvent *e );    void keyReleaseEvent( QKeyEvent *e );    void viewportMousePressEvent( QMouseEvent *e );    void viewportMouseReleaseEvent( QMouseEvent *e );public slots:    void addTabPage();    void removeTabPage();private:    void insertObject( QObject *o, QListViewItem *parent );    QWidget *findWidget( QListViewItem *i );    QListViewItem *findItem( QWidget *w );    QWidget *current() const;private slots:    virtual void objectClicked( QListViewItem *i );    virtual void showRMBMenu( QListViewItem *, const QPoint & );protected:    FormWindow *formWindow;    QPopupMenu *normalMenu, *tabWidgetMenu;    bool deselect;};class FormDefinitionView : public HierarchyList{    Q_OBJECTpublic:    FormDefinitionView( QWidget *parent, FormWindow *fw );    void setup();    void refresh( bool doDelete = TRUE );    void setCurrent( QWidget *w );protected:    void contentsMouseDoubleClickEvent( QMouseEvent *e );private:    void save( QListViewItem *p, QListViewItem *i );private slots:    void objectClicked( QListViewItem *i );    void showRMBMenu( QListViewItem *, const QPoint & );    void renamed( QListViewItem *i );    void editVars();private:    bool popupOpen;};class HierarchyView : public QTabWidget{    Q_OBJECTpublic:    HierarchyView( QWidget *parent );    ~HierarchyView();    void setFormWindow( FormWindow *fw, QWidget *w );    FormWindow *formWindow() const;    SourceEditor *sourceEditor() const { return editor; }    void clear();    void showClasses( SourceEditor *se );    void updateClassBrowsers();    void widgetInserted( QWidget *w );    void widgetRemoved( QWidget *w );    void widgetsInserted( const QWidgetList &l );    void widgetsRemoved( const QWidgetList &l );    void namePropertyChanged( QWidget *w, const QVariant &old );    void databasePropertyChanged( QWidget *w, const QStringList& info );    void tabsChanged( QTabWidget *w );    void pagesChanged( QWizard *w );    void rebuild();    void closed( FormWindow *fw );    void updateFormDefinitionView();    FormDefinitionView *formDefinitionView() const { return fView; }protected slots:    void jumpTo( const QString &func, const QString &clss,int type );    void showClassesTimeout();protected:    void closeEvent( QCloseEvent *e );signals:    void hidden();private:    struct ClassBrowser    {	ClassBrowser( QListView * = 0, ClassBrowserInterface * = 0 );	~ClassBrowser();	QListView *lv;	QInterfacePtr<ClassBrowserInterface> iface;    };    FormWindow *formwindow;    HierarchyList *listview;    FormDefinitionView *fView;    SourceEditor *editor;    QMap<QString, ClassBrowser> *classBrowsers;    QGuardedPtr<SourceEditor> lastSourceEditor;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?