summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/ptdefiledialog-cmd.h
blob: 610b2aea9c5e8b00ccbe72adfc0884d2ca7b0168 (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
#ifndef PTDEFILEDIALOG_CMD_H
#define PTDEFILEDIALOG_CMD_H

/*
 * We get 2200
 */

// Desc: sets the current directory
// iWinId: widget
// iArg: not defined
// cArg: path
#define PUKE_KBFD_SET_PATH 2200

// Desc: ack for the set
// iWinId: widget
// iArg: not defined
// cArg: actual path
#define PUKE_BFD_SET_PATH_ACK -2200

// Desc: sets the current filter
// iWinId: widget
// iArg: not defined
// cArg: filter, as defined in KFileBaseDialog::setFilter
#define PUKE_KBFD_SET_FILTER 2201

// Desc: ack for the set
// iWinId: widget
// iArg: not defined
// cArg: not define
#define PUKE_KBFD_SET_FILTER_ACK -2201

// Desc: sets the current file
// iWinId: widget
// iArg: not defined
// cArg: filename (does it need the full path?)
#define PUKE_KBFD_SET_SELECTION 2202

// Desc: ack for the set
// iWinId: widget
// iArg: not defined
// cArg: not define
#define PUKE_KBFD_SET_SELECTION_ACK -2202

// Desc: ack for current file select
// iWinId: not defined
// iArg: not defined
// cArg: not defined
#define PUKE_KBFD_FILE_SELECTED 2203

// Desc: ack for current file select
// iWinId: widget
// iArg: not defined
// cArg: filename
#define PUKE_KBFD_FILE_SELECTED_ACK -2203

#endif