blob: c66192932cac8fbaabefc5ac2c5a96f030bfcc95 (
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
|
/***
* Copyright (c) 2001 Charles Samuels <charles@kde.org>
* Standard BSD License. Second version.
* The added stipulation is that this cannot link
* to GPL code. Except in the explicit case
* of Noatun linking to this, and to a GPL plugin,
* where the GPL plugin does not use any code
* in this class. However, it may link directly
* to the TQt Library, where TQt may be under any license.
*
* Debian, Gnome, and GNU must ALL DIE.
* Especially GNU's stupid info pages.
**/
#ifndef MIMETYPETREE_H
#define MIMETYPETREE_H
#include <tdelistview.h>
class MimeTypeTree : public TDEListView
{
Q_OBJECT
public:
MimeTypeTree(TQWidget *parent);
private:
TQListViewItem *addMajor(const TQString &name);
private slots:
void sel(TQListViewItem *item);
signals:
void selected(const TQString &mimetype);
};
#endif
|