summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/oblique/menu.h
blob: 88c8ea7d57729eb099160a2251f28916b7748793 (plain)
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
// Copyright (c) 2003 Charles Samuels <charles@kde.org>
// See the file COPYING for redistribution terms.

#ifndef MENU_H
#define MENU_H

#include <tdepopupmenu.h>
#include <kpropertiesdialog.h>
#include <tdeaction.h>

#include "file.h"
#include "oblique.h"

/**
 * a context menu for a item in the list
 **/
class FileMenu : public TDEPopupMenu
{
Q_OBJECT
  
	TQValueList<File> mFiles;

public:
	FileMenu(TQWidget *parent, Oblique *oblique, File file);
	/**
	 * @recursively uses everything under @p files
	 **/
	FileMenu(TQWidget *parent, Oblique *oblique, TreeItem *files);

private slots:
	void removeFromList();
	void properties();
	void toggleInSlice(Slice *slice);
};

class SliceListAction : public TDEActionMenu
{
Q_OBJECT
  
	TQMap<int, Slice*> mIndexToSlices;
	TQValueList<File> mFiles;
	Oblique *mOblique;

public:
	SliceListAction(
			const TQString &text, Oblique *oblique,
			TQObject *reciever, const char *slot,
			const TQValueList<File> &files = TQValueList<File>(), TQObject *parent=0, const char *name=0
		);

signals:
	void activated(Slice *slice);

private slots:
	void hit(int index);
	void slicesModified();
};


class SchemaListAction : public TDEActionMenu
{
Q_OBJECT
  
	TQMap<int, TQString> mIndexToSchemas;
	Tree *mTree;

public:
	SchemaListAction(
			const TQString &text,
			TQObject *reciever, const char *slot,
			TQObject *parent, const char *name
		);

	void setTree(Tree *tree) { mTree = tree; }

signals:
	void activated(const TQString &);

private slots:
	void hit(int index);
	void prepare();
};


class ObliquePropertiesDialog : public KPropertiesDialog
{
Q_OBJECT
  
	TQValueList<File> mFiles;

public:
	ObliquePropertiesDialog(const TQValueList<File> &files, TQWidget *parent);

private:
	static KFileItemList makeItems(const TQValueList<File> &files);

private slots:
	void modified();
};


#endif