|
|
|
@ -44,7 +44,7 @@ enum {
|
|
|
|
|
COPY, MOVE, RENAME, PREVIEW, LINK
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct fileentry {
|
|
|
|
|
struct fileentry {
|
|
|
|
|
TQString name; // filename
|
|
|
|
|
TQString directory; // directory
|
|
|
|
|
TQString extension; // extension
|
|
|
|
@ -52,7 +52,7 @@ typedef struct fileentry {
|
|
|
|
|
KURL url;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct data {
|
|
|
|
|
struct data {
|
|
|
|
|
fileentry src;
|
|
|
|
|
fileentry dst;
|
|
|
|
|
|
|
|
|
@ -64,18 +64,18 @@ typedef struct data {
|
|
|
|
|
* in the preview list view are
|
|
|
|
|
* stored here.
|
|
|
|
|
*/
|
|
|
|
|
typedef struct manualchanges {
|
|
|
|
|
struct manualchanges {
|
|
|
|
|
KURL url; // input filename
|
|
|
|
|
TQString user; // name the user wants
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct replacestrings {
|
|
|
|
|
struct replacestrings {
|
|
|
|
|
TQString find; // Text to replace
|
|
|
|
|
TQString replace; // Replace with
|
|
|
|
|
bool reg; // is it a reg expression ?
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct tCounterValues {
|
|
|
|
|
struct tCounterValues {
|
|
|
|
|
int value; // current value of this counter
|
|
|
|
|
int start; // start value of this counter (for findResetCounter)
|
|
|
|
|
int step; // stepping value of this counter;
|
|
|
|
|