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//--------------------
19class Item;
20
21#include <q3iconview.h>
22#include <qobject.h>
23
24//=====================================
25class Items : public Q3IconView
26{
27Q_OBJECT
28//--
29public:
30 Items( QWidget* parent=0,
31 const char* name = 0 );
32 void keyPressEvent( QKeyEvent* e );
33 QSize sizeHint() const;
34//--
35private slots:
36 void repaintGroup( Q3IconViewItem* pseudoSelection);
38//--
39private:
41};
42//======================
43
44#endif //GUI_WELCOMEWINDOW_ITEMS_H
Definition item.h:28
Definition items.h:26
Item * currentPseudoSelection
Definition items.h:40
void clearPseudoSelection()
Definition items.cpp:81
Items(QWidget *parent=0, const char *name=0)
Definition items.cpp:22
void keyPressEvent(QKeyEvent *e)
Definition items.cpp:37
QSize sizeHint() const
Definition items.cpp:54
void repaintGroup(Q3IconViewItem *pseudoSelection)
Definition items.cpp:70