• 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
28class KDirLister;
29class KFileIVI;
30
31class LIBKONQ_EXPORT KIVDirectoryOverlay : public TQObject
32{
33 TQ_OBJECT
34
35public:
36 KIVDirectoryOverlay(KFileIVI* directory);
37 virtual ~KIVDirectoryOverlay();
38 void start();
39
40signals:
41 void finished();
42
43protected:
44 virtual void timerEvent(TQTimerEvent *);
45
46private slots:
47 void slotCompleted();
48 void slotNewItems( const KFileItemList& items );
49
50private:
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
KFileIVI
KFileIVI (short form of "Konq - File - IconViewItem") is, as expected, an improved TDEIconViewItem,...
Definition: tdefileivi.h:40

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.9.4
This website is maintained by Timothy Pearson.