~gezakovacs/tde/csailmirror

« back to all changes in this revision

Viewing changes to hybridplane.cpp

  • Committer: Geza Kovacs
  • Date: 2008-12-01 23:02:15 UTC
  • Revision ID: gkovacs@mit.edu-20081201230215-8s5b5c2al1mpmkaq
code cleanup on hybrid mode

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        this->setWindowState(Qt::WindowFullScreen);
21
21
//        maincontainer->setGeometry(maincontainer->screenGeometry(maincontainer));
22
22
//        maincontainer->setWindowState(Qt::WindowFullScreen);
 
23
//    this->addbasewidgets(this);
 
24
 
23
25
        localviewplane = new viewplane(this);
24
 
        localviewplane->isremote = false;
 
26
//        localviewplane->isremote = false;
 
27
 
25
28
        tdesrvportnum = portnum;
26
29
//      tdesrvportnum = 45454;
27
30
//      rviewplane->setWindowState(Qt::WindowFullScreen);
32
35
//      connect(udpSocket, SIGNAL(readyRead()), this, SLOT(processdatagrams()));
33
36
        udpSocket->bind(portnum);
34
37
        connect(udpSocket, SIGNAL(readyRead()), this, SLOT(processdatagrams()));
 
38
        this->setupall();
 
39
        /*
35
40
        localviewplane->isremote = false;
36
41
        metavp = new metaviewplane;
37
42
        remotevp = new viewplane;
62
67
        connect(searchtype, SIGNAL(currentIndexChanged(int)), this, SLOT(changesearchcategory()));
63
68
//        this->setupall();
64
69
        this->show();
 
70
        */
 
71
        this->show();
65
72
}
66
73
 
67
74
void hybridplane::processdatagrams()