blob: 7af18f1ae7d679389140c289b57261d9633268e1 (
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
63
64
 | //
//
// "Desktop Icons Options" Tab for KDesktop configuration
//
// (c) Martin R. Jones 1996
//
// Port to KControl, split from "Misc" Tab, Port to KControl2
// (c) David Faure 1998
// Desktop menus, paths
// (c) David Faure 2000
#ifndef __ROOT_OPTIONS_H
#define __ROOT_OPTIONS_H
#include <tqstring.h>
#include <kcmodule.h>
#include <kio/global.h>
#include <kurl.h>
class TQCheckBox;
class TQComboBox;
class TQPushButton;
class KConfig;
class KListView;
class KURLRequester;
namespace KIO { class Job; }
//-----------------------------------------------------------------------------
// The "Path" Tab contains :
// The paths for Desktop, Autostart and Documents
class DesktopPathConfig : public KCModule
{
        Q_OBJECT
public:
        DesktopPathConfig(TQWidget *parent = 0L, const char *name = 0L );
        virtual void load();
        virtual void load( bool useDefaults );
        virtual void save();
        virtual void defaults();
private slots:
    void slotEntries( KIO::Job * job, const KIO::UDSEntryList& list);
private:
        // Desktop Paths
        KURLRequester *urDesktop;
        KURLRequester *urAutostart;
        KURLRequester *urDocument;
        bool moveDir( const KURL & src, const KURL & dest, const TQString & type );
        bool m_ok;
        KURL m_copyToDest; // used when the destination directory already exists
        KURL m_copyFromSrc;
private slots:
        void slotResult( KIO::Job * job );
};
#endif // __ROOT_OPTIONS_H
 |