• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • libkonq
 

libkonq

  • libkonq
kivdirectoryoverlay.h
1 /* This file is part of the KDE libraries
2  Copyright (C) 2002 Simon MacMullen
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Library General Public
6  License as published by the Free Software Foundation; either
7  version 2 of the License, or (at your option) any later version.
8 
9  This library is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  Library General Public License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to
16  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  Boston, MA 02110-1301, USA.
18 */
19 
20 #ifndef _KIVDIRECTORYOVERLAY_H_
21 #define _KIVDIRECTORYOVERLAY_H_
22 
23 #include <tdefileitem.h>
24 #include <libkonq_export.h>
25 
26 #include <tqdict.h>
27 
28 class KDirLister;
29 class KFileIVI;
30 
31 class LIBKONQ_EXPORT KIVDirectoryOverlay : public TQObject
32 {
33  Q_OBJECT
34 
35 public:
36  KIVDirectoryOverlay(KFileIVI* directory);
37  virtual ~KIVDirectoryOverlay();
38  void start();
39 
40 signals:
41  void finished();
42 
43 protected:
44  virtual void timerEvent(TQTimerEvent *);
45 
46 private slots:
47  void slotCompleted();
48  void slotNewItems( const KFileItemList& items );
49 
50 private:
51  KDirLister* m_lister;
52  bool m_foundItems;
53  bool m_containsFolder;
54  TQDict<int>* m_popularIcons;
55  TQString m_bestIcon;
56  KFileIVI* m_directory;
57 };
58 
59 #endif

libkonq

Skip menu "libkonq"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

libkonq

Skip menu "libkonq"
  • kate
  • libkonq
  • twin
  •   lib
Generated for libkonq by doxygen 1.8.1.2
This website is maintained by Timothy Pearson.