summaryrefslogtreecommitdiff
path: root/noncore/comm/keypebble/krfbserver.cpp
blob: b47534ef1825f01fd187f7ce5d8c536d43a13c41 (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
#include <qpe/config.h>
#include <qpe/qpeapplication.h>
#include "krfbserver.h"

KRFBServer::KRFBServer()
{
	QString name;
	QString hostname;
	QString password;
	display=0;

	scaleFactor=1;

  hexTile=0;
  corre=0;
  rre=0;
  copyrect=1;
    
  colors256=1;
  shared=0;
  readOnly=0;
  deIconify=0;

  updateRate=0;
}
KRFBServer::~KRFBServer()
{
}

int KRFBServer::encodings()
{
  // Initially one because we always support raw encoding
  int count = 1;

  count += hexTile ? 1 : 0;
  count += corre ? 1 : 0;
  count += rre ? 1 : 0;
  count += copyrect ? 1 : 0;

  return count;
}