// Version: $Id: 1bf82c7090fd4f6fbe7a8614d06e34d2c9774ccd $ // // // Commentary: // // // Change Log: // // // Code: #pragma once #include #include class dtkComposerViewLayout; class dtkComposerViewLayoutItemPrivate; class dtkComposerViewWidget; // ///////////////////////////////////////////////////////////////// // dtkComposerViewLayoutItemProxy // ///////////////////////////////////////////////////////////////// class dtkComposerViewLayoutItemProxyPrivate; class DTKCOMPOSER_EXPORT dtkComposerViewLayoutItemProxy : public QFrame { Q_OBJECT public: dtkComposerViewLayoutItemProxy(QWidget *parent = 0); ~dtkComposerViewLayoutItemProxy(void); public: dtkComposerViewWidget *view(void); public: void setView(dtkComposerViewWidget *view); signals: void focusedIn(void); void focusedOut(void); protected: void focusInEvent(QFocusEvent *event); void focusOutEvent(QFocusEvent *event); private: dtkComposerViewLayoutItemProxyPrivate *d; }; // ///////////////////////////////////////////////////////////////// // dtkComposerViewLayoutItem // ///////////////////////////////////////////////////////////////// class DTKCOMPOSER_EXPORT dtkComposerViewLayoutItem : public QFrame { Q_OBJECT public: dtkComposerViewLayoutItem(dtkComposerViewLayoutItem *parent = 0); ~dtkComposerViewLayoutItem(void); public: dtkComposerViewWidget *view(void); public: dtkComposerViewLayoutItem *parent(void); dtkComposerViewLayoutItem *first(void); dtkComposerViewLayoutItem *second(void); public: void setOrientation(Qt::Orientation orientation); void setSizes(QList sizes); public: int canvasHeight(void); int footerHeight(void); int handleHeight(void); int handleWidth(void); public: dtkComposerViewLayout *layout(void); public: dtkComposerViewLayoutItemProxy *proxy(void); public: void setLayout(dtkComposerViewLayout *layout); public slots: void clear(void); void split(void); void unsplit(void); void maximize(void); signals: void focused(dtkComposerViewWidget *view); void unfocused(dtkComposerViewWidget *view); protected slots: void close(void); void horzt(void); void vertc(void); void maxmz(void); protected slots: void onFocusedIn(void); void onFocusedOut(void); protected: void dragEnterEvent(QDragEnterEvent *); void dragMoveEvent(QDragMoveEvent *); void dragLeaveEvent(QDragLeaveEvent *); void dropEvent(QDropEvent *); private: void notify(dtkComposerViewWidget *view); private: dtkComposerViewLayoutItemPrivate *d; private: friend class dtkComposerViewLayoutItemPrivate; friend class dtkComposerViewLayoutItemProxy; }; // // dtkComposerViewLayoutItem.h ends here