1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/***************************************************************************
* Copyright (C) 2004 by *
* Jason Kivlighn ([email protected]) *
* Unai Garro ([email protected]) *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef AUTHORLISTVIEW_H
#define AUTHORLISTVIEW_H
#include "dblistviewbase.h"
#include "datablocks/element.h"
class RecipeDB;
class TDEPopupMenu;
class AuthorCheckListView;
class AuthorCheckListItem: public TQCheckListItem
{
public:
AuthorCheckListItem( AuthorCheckListView* qlv, const Element &author );
AuthorCheckListItem( AuthorCheckListView* qlv, TQListViewItem *after, const Element &author );
Element author() const;
virtual TQString text( int column ) const;
protected:
virtual void stateChange( bool on );
private:
Element authorStored;
AuthorCheckListView *m_listview;
};
class AuthorListView : public DBListViewBase
{
TQ_OBJECT
public:
AuthorListView( TQWidget *parent, RecipeDB *db );
protected slots:
void checkCreateAuthor( const Element &el );
virtual void createAuthor( const Element & ) = 0;
virtual void removeAuthor( int ) = 0;
virtual void load( int curr_limit, int curr_offset );
protected:
virtual void init();
};
class StdAuthorListView : public AuthorListView
{
TQ_OBJECT
public:
StdAuthorListView( TQWidget *parent, RecipeDB *db, bool editable = false );
protected:
virtual void createAuthor( const Element & );
virtual void removeAuthor( int );
private slots:
void showPopup( TDEListView *, TQListViewItem *, const TQPoint & );
void createNew();
void remove
();
void rename();
void modAuthor( TQListViewItem* i );
void saveAuthor( TQListViewItem* i );
private:
bool checkBounds( const TQString &name );
TDEPopupMenu *kpop;
};
class AuthorCheckListView : public AuthorListView
{
public:
AuthorCheckListView( TQWidget *parent, RecipeDB *db );
virtual void stateChange(AuthorCheckListItem *,bool);
TQValueList<Element> selections() const{ return m_selections; }
protected:
virtual void createAuthor( const Element &ing );
virtual void removeAuthor( int );
virtual void load( int limit, int offset );
private:
TQValueList<Element> m_selections;
};
#endif //AUTHORLISTVIEW_H
|