summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/imageview.h
authoralwin <alwin>2004-10-31 16:31:04 (UTC)
committer alwin <alwin>2004-10-31 16:31:04 (UTC)
commit6d27de4d1d4ebce0acc9ab68037d7e9f3c1d3703 (patch) (side-by-side diff)
tree793f8a0e448ff7944dab4ce5187d6e1b93daf416 /noncore/graphics/opie-eye/gui/imageview.h
parent92fa51ae338d92b0df078f8283b31afdfcf4341a (diff)
downloadopie-6d27de4d1d4ebce0acc9ab68037d7e9f3c1d3703.zip
opie-6d27de4d1d4ebce0acc9ab68037d7e9f3c1d3703.tar.gz
opie-6d27de4d1d4ebce0acc9ab68037d7e9f3c1d3703.tar.bz2
all toolbuttons etc. switched to QAction objects
menu mostly finished
Diffstat (limited to 'noncore/graphics/opie-eye/gui/imageview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/imageview.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/imageview.h b/noncore/graphics/opie-eye/gui/imageview.h
index f0e6541..640905a 100644
--- a/noncore/graphics/opie-eye/gui/imageview.h
+++ b/noncore/graphics/opie-eye/gui/imageview.h
@@ -6,6 +6,8 @@
#include <qwidget.h>
class QTimer;
+class QActionGroup;
+class QAction;
namespace Opie {
namespace Core {
@@ -29,12 +31,14 @@ class ImageView:public Opie::MM::OImageScrollView
};
public:
- ImageView(Opie::Core::OConfig *cfg, QWidget* parent, const char* name = 0, WFlags fl = 0 );
+ ImageView(Opie::Core::OConfig *cfg,QWidget* parent,const char* name = 0, WFlags fl = 0 );
virtual ~ImageView();
Opie::Core::OKeyConfigManager* manager();
void setFullScreen(bool how);
bool fullScreen(){return m_isFullScreen;}
virtual void enableFullscreen();
+ void stopSlide();
+ void setMenuActions(QActionGroup*hGroup,QActionGroup*nextprevGroup, QActionGroup*disptypeGroup);
signals:
void dispImageInfo(const QString&);
@@ -56,6 +60,7 @@ protected:
QTimer*m_slideTimer;
int m_slideValue;
virtual void focusInEvent ( QFocusEvent * );
+ QActionGroup *m_gDisplayType,*m_gPrevNext,*m_hGroup;
public slots:
virtual void hide();