AlbumShaper  1.0a3
items.h
Go to the documentation of this file.
1 //Added by qt3to4:
2 #include <QKeyEvent>
3 //==============================================
4 // copyright : (C) 2003-2005 by Will Stokes
5 //==============================================
6 // This program is free software; you can redistribute it
7 // and/or modify it under the terms of the GNU General
8 // Public License as published by the Free Software
9 // Foundation; either version 2 of the License, or
10 // (at your option) any later version.
11 //==============================================
12 
13 #ifndef GUI_WELCOMEWINDOW_ITEMS_H
14 #define GUI_WELCOMEWINDOW_ITEMS_H
15 
16 //--------------------
17 //forward declarations
18 //--------------------
19 class Item;
20 
21 #include <q3iconview.h>
22 #include <qobject.h>
23 
24 //=====================================
25 class Items : public Q3IconView
26 {
27 Q_OBJECT
28 //--
29 public:
30  Items( QWidget* parent=0,
31  const char* name = 0 );
32  void keyPressEvent( QKeyEvent* e );
33  QSize sizeHint() const;
34 //--
35 private slots:
36  void repaintGroup( Q3IconViewItem* pseudoSelection);
37  void clearPseudoSelection();
38 //--
39 private:
41 };
42 //======================
43 
44 #endif //GUI_WELCOMEWINDOW_ITEMS_H
Definition: items.h:25
Items(QWidget *parent=0, const char *name=0)
Definition: items.cpp:22
void keyPressEvent(QKeyEvent *e)
Definition: items.cpp:37
void repaintGroup(Q3IconViewItem *pseudoSelection)
Definition: items.cpp:70
Definition: item.h:27
void clearPseudoSelection()
Definition: items.cpp:81
Item * currentPseudoSelection
Definition: items.h:40
QSize sizeHint() const
Definition: items.cpp:54