4 Original GPL release version 4.12
5 Copyright 1993-2000 Jonathan Potter
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 All users of Directory Opus 4 (including versions distributed
22 under the GPL) are entitled to upgrade to the latest version of
23 Directory Opus version 5 at a reduced price. Please see
24 http://www.gpsoft.com.au for more information.
26 The release of Directory Opus 4 under the GPL in NO WAY affects
27 the existing commercial status of Directory Opus 5.
31 /* General-purpose flags and defines */
38 #define SEARCH_NOCASE 1
39 #define SEARCH_WILDCARD 2
40 #define SEARCH_ONLYWORDS 4
42 /* AddIcon Icon Types */
44 #define ICONTYPE_DRAWER 0
45 #define ICONTYPE_TOOL 1
46 #define ICONTYPE_PROJECT 2
47 #define ICONTYPE_TRASH 3
67 /* Separation Methods */
69 #define SEPARATE_MIX 0
70 #define SEPARATE_DIRSFIRST 1
71 #define SEPARATE_FILESFIRST 2
73 /* Modify Parameters */
102 MOD_SCREENCLOCKFLAGS
,
121 /* DOpus NewScreen Tags */
123 #define SCREENTAGS_DISPLAYID 0
124 #define SCREENTAGS_PENS 1
125 #define SCREENTAGS_PUBNAME 2
126 #define SCREENTAGS_OVERSCAN 3
127 #define SCREENTAGS_AUTOSCROLL 4
128 #define SCREENTAGS_INTERLEAVED 5
130 /* System-Signals Recognised By DOpus */
132 #define INPUTSIG_ABORT SIGBREAKF_CTRL_C
133 #define INPUTSIG_TITLECLICK SIGBREAKF_CTRL_D
134 #define INPUTSIG_UNICONIFY SIGBREAKF_CTRL_E
135 #define INPUTSIG_HOTKEY SIGBREAKF_CTRL_F
137 /* Positioning Of Status Text */
139 #define TOPTEXT_CENTER 0
140 #define TOPTEXT_LEFT 1
141 #define TOPTEXT_RIGHT 2
143 /* Flags for startgetdir() */
145 #define SGDFLAGS_CANMOVEEMPTY 1
146 #define SGDFLAGS_CANCHECKBUFS 2
147 #define SGDFLAGS_REREADINGOLD 4
149 /* Flags for wildselect() */
151 #define WILDSELECT_NAME 0
152 #define WILDSELECT_COMMENT 1
154 /* Return values for checkexistreplace() function */
157 #define REPLACE_ABORT 0
158 #define REPLACE_ALL 2
159 #define REPLACE_RETRY 2
160 #define REPLACE_RENAME 3
161 #define REPLACE_SKIP 4
162 #define REPLACE_SKIPALL 5