summaryrefslogtreecommitdiff
path: root/libslcompat/slfileselector.cpp
blob: 3189b51afce39b1114ec1d4d9e3b214592105782 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include "slfileselector.h"

SlFileIconView::SlFileIconView( QWidget* parent, const char* name )
               :QIconView( parent, name )
{
}

SlFileIconView::~SlFileIconView()
{
}

/*================================================================*/

SlFileListView::SlFileListView( QWidget* parent, const char* name )
               :QListView( parent, name )
{
}

SlFileListView::~SlFileListView()
{
}

/*================================================================*/

SlFileSelector::SlFileSelector( const QString &dirPath, const QString &mimefilter, QWidget *parent, const char *name )
               :OFileSelector( dirPath, parent, name )
{
}

SlFileSelector::~SlFileSelector()
{
}

bool SlFileSelector::isTopDir()
{
    return false;
}

void SlFileSelector::setSelected()
{
}

void SlFileSelector::setSelected(const QString&)
{
    int a;
}

void SlFileSelector::createFileList()
{
    int a;
}

void SlFileSelector::createFileList(QDir&)
{
    int a;
}

const QFileInfo* SlFileSelector::selected()
{
    int a;
}

void SlFileSelector::setCurrentFile(const QString&)
{
    int a;
}

const QString SlFileSelector::currentDir()
{
    int a;
}


void SlFileSelector::focusInEvent(QFocusEvent*)
{
}

void SlFileSelector::show()
{
}

void SlFileSelector::keyPressEvent( QKeyEvent *e )
{
}