summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sidebar/sq_imagebasket.h
blob: 4eb3bb4d9479582ab0e194ab4477ddd62a53f61d (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
/***************************************************************************
                          sq_imagebasket.h  -  description
                             -------------------
    begin                : ??? Feb 24 2007
    copyright            : (C) 2007 by Baryshev Dmitry
    email                : ksquirrel.iv@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SQ_IMAGEBASKET_H
#define SQ_IMAGEBASKET_H

#include <kdiroperator.h>

class SQ_Dir;

/**
  *@author Baryshev Dmitry
  */

class SQ_ImageBasket : public KDirOperator
{
    Q_OBJECT
  TQ_OBJECT

    public:
        SQ_ImageBasket(TQWidget *parent = 0, const char *name = 0);
	~SQ_ImageBasket();

        void add(const KFileItemList &);

        KFileItemList realItems() const;

        void saveConfig();

        static SQ_ImageBasket* instance() { return m_inst; }

        private slots:
            // coming from KDirOperator
            void insertNewFiles(const KFileItemList &);
            void slotDropped(const KFileItem *, TQDropEvent*, const KURL::List&);
            void slotBasketProperties();
            void slotSync();
            void slotViewChanged(KFileView *);
            void slotExecuted(const KFileItem *fi);

            void activatedMenu(const KFileItem *, const TQPoint &pos);

        private:
            SQ_Dir *dir;
            static SQ_ImageBasket *m_inst;
};

#endif