blob: 7e4960af9c3defcbd89ebc3a0971062856f24090 [file] [log] [blame]
Constantin Kaplinskyb30ae7f2006-05-25 05:04:46 +00001/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
2 *
3 * This is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This software is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16 * USA.
17 */
18#ifndef __PARAMETERS_H__
19#define __PARAMETERS_H__
20
21#include <rfb/Configuration.h>
22
23extern rfb::IntParameter pointerEventInterval;
24extern rfb::IntParameter wmDecorationWidth;
25extern rfb::IntParameter wmDecorationHeight;
26extern rfb::StringParameter passwordFile;
27extern rfb::BoolParameter useLocalCursor;
28extern rfb::BoolParameter dotWhenNoCursor;
29extern rfb::BoolParameter autoSelect;
30extern rfb::BoolParameter fullColour;
31extern rfb::IntParameter lowColourLevel;
32extern rfb::StringParameter preferredEncoding;
33extern rfb::BoolParameter viewOnly;
34extern rfb::BoolParameter shared;
35extern rfb::BoolParameter acceptClipboard;
36extern rfb::BoolParameter sendClipboard;
37extern rfb::BoolParameter sendPrimary;
Pierre Ossmaneb3cecb2009-03-23 16:49:47 +000038extern rfb::StringParameter desktopSize;
Constantin Kaplinskyb30ae7f2006-05-25 05:04:46 +000039extern rfb::BoolParameter fullScreen;
40extern rfb::StringParameter geometry;
41extern rfb::BoolParameter customCompressLevel;
42extern rfb::IntParameter compressLevel;
43extern rfb::BoolParameter noJpeg;
44extern rfb::IntParameter qualityLevel;
45
46extern char aboutText[];
47extern char* programName;
48
49#endif