listboxview.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _KATE_LISTBOX_VIEW_H_
00020 #define _KATE_LISTBOX_VIEW_H_
00021
00022 #include "dockviewbase.h"
00023
00024 class KListBox;
00025
00026 namespace Kate
00027 {
00028
00029 class ListboxView : public DockViewBase {
00030 Q_OBJECT
00031 public:
00032 ListboxView( QWidget *parent=0, const char *name=0 );
00033 ListboxView( const QString &titlePrefix, const QString &title, QWidget *parent=0, const char *name=0 );
00034 ~ListboxView();
00035
00036 KListBox * listbox();
00037
00038 private:
00039 class ListboxViewPrivate *d;
00040 };
00041
00042 }
00043
00044 #endif // _KATE_LISTBOX_VIEW_H_
This file is part of the documentation for kate Library Version 3.2.2.