diff options
author | Treeki <treeki@gmail.com> | 2012-08-19 01:48:36 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-08-19 01:48:36 +0200 |
commit | 2883326061ccadc1b21376dc25c92e1d6751d592 (patch) | |
tree | 8488da79605991d1b02a97d3eb78741c47647103 /lspaneeditor.h | |
parent | 195efe4ebab933bfbba7f7bf06cf4592b865d008 (diff) | |
download | LayoutStudio-2883326061ccadc1b21376dc25c92e1d6751d592.tar.gz LayoutStudio-2883326061ccadc1b21376dc25c92e1d6751d592.zip |
added a tex coord set editor and the beginnings of a Picture tab
Diffstat (limited to '')
-rw-r--r-- | lspaneeditor.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lspaneeditor.h b/lspaneeditor.h index 9aaf942..16f6d1b 100644 --- a/lspaneeditor.h +++ b/lspaneeditor.h @@ -12,6 +12,7 @@ #include <QComboBox> #include <QCheckBox> #include "lyt/pane.h" +class LSTexCoordSetEditor; class LSPaneEditor : public QWidget { Q_OBJECT @@ -52,7 +53,15 @@ private: }; }; + // Picture tab + QWidget *m_pictureTab; + + LSTexCoordSetEditor *m_picTexCoordEditor; + + void createPaneTab(); + void createPictureTab(); + bool m_currentlyLoadingPane; LYTPane *m_pane; |