summaryrefslogtreecommitdiffstats
path: root/src/server/mainwindow/mainwindow.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove MainWindow::isValidClient. Connect slots not queued.Manuel Schneider2014-06-031-24/+2Star
|
* Merge branch 'master' of git.openslx.org:pvs2Manuel Schneider2014-06-031-13/+21
|\
| * Removed some unnecessary qDebug comments.Björn Hagemeister2014-06-021-3/+1Star
| |
| * Merge branch 'master' of git.openslx.org:pvs2Björn Hagemeister2014-06-021-9/+32
| |\ | | | | | | | | | | | | Conflicts: src/server/mainwindow/mainwindow.h
| * | Put Check if manager is running on machine into method.Björn Hagemeister2014-06-021-10/+20
| | | | | | | | | | | | If student2tutor_exclusive is running, the manager running machine is not locked now.
* | | Remove client list from listenServer. Check maxClients in MainwindowManuel Schneider2014-06-031-0/+6
| |/ |/|
* | Uncheck lock if any action is performed.Manuel Schneider2014-05-281-9/+29
| |
* | Give Exclusive student to tutor correct funtion. Kill all projections on lock.Manuel Schneider2014-05-281-1/+4
|/
* Merge branch 'master' of git.openslx.org:pvs2Björn Hagemeister2014-05-271-79/+44Star
|\
| * Manual mergeManuel Schneider2014-05-271-12/+23
| |\
| * | Adjust stopProjectionManuel Schneider2014-05-271-14/+6Star
| | |
| * | Unite BC and MC. Reducing complexityManuel Schneider2014-05-271-49/+30Star
| | |
| * | Make it possible to exclude a client from multicast.Manuel Schneider2014-05-271-10/+12
| | |
| * | Lock is already handled in onVncServerStateChange.Manuel Schneider2014-05-271-8/+0Star
| | |
| * | Mainwindow takes full control over management. No need for abritrary polls.Manuel Schneider2014-05-271-9/+0Star
| | |
* | | Enable, to set locked client to tutor and unlock selected one afterwards.Björn Hagemeister2014-05-271-4/+14
| |/ |/|
* | Put the clients adaption to current class room situation into method.Björn Hagemeister2014-05-271-10/+21
| | | | | | | | Now clients who where just inactive also follow immediatly the actual actions.
* | By pushing reset button, also unlock all currently locked screens.Björn Hagemeister2014-05-271-11/+4Star
|/
* Drop _isBroadcastSource. The client must not know anything about the management.Manuel Schneider2014-05-271-2/+0Star
|
* Dont emit _currentProjectionSource in signal vncClientStateChange . (not used)Manuel Schneider2014-05-271-2/+2
|
* Use enums for modes since not all combinations of _broadcast and _lockOthers ↵Manuel Schneider2014-05-271-17/+19
| | | | make sense.
* Drop _desiredProjectionSource. Dont send a stopVncClient if it has not been ↵Manuel Schneider2014-05-271-64/+58Star
| | | | started before.
* Replace states by two flags indicating the stateManuel Schneider2014-05-261-14/+9Star
|
* Refactor unicast to multicastManuel Schneider2014-05-261-4/+4
|
* Make tutor check implicit in lock screenManuel Schneider2014-05-261-1/+1
|
* Several changes:Björn Hagemeister2014-05-261-3/+16
| | | | | | Fixed segmentaion fault, which occured after streaming to all clients. Added sessionName as command line argument to client, so that it connects immediatly after running to given sessionName. If pvsclient shows connected status also display IP-Adress of the running pvsmanager.
* First approach for an exclusive unicast. T.b.c.Manuel Schneider2014-05-221-26/+42
|
* Refactor ambigious projectionsSoure to BroadcastSourceManuel Schneider2014-05-221-8/+8
|
* Fix mitstake in rewrite 58646932664b6ab9014a410dc75dd443fb4f58b9Manuel Schneider2014-05-221-1/+1
|
* Make vnc credentials completely private to client. Make VNCConnect work ↵Manuel Schneider2014-05-201-9/+9
| | | | client-internally only. Drop Client::computerID() (equivalent to Client::ip() XD )
* Remove any knowledge of Networkmesage in MainwindowManuel Schneider2014-05-201-45/+16Star
|
* Merge branch 'master' of git.openslx.org:pvs2Manuel Schneider2014-05-201-0/+1
|\
| * Simple changes in Layout of Help Window.Björn Hagemeister2014-05-201-0/+1
| |
* | Reduce codeManuel Schneider2014-05-201-38/+13Star
| | | | | | | | | | * Reduce code of prepareForProjection (broadcast part) * Make toolbar icons 48x48 px (were too large for standard windowsize)
* | Merge unicast implemetations into one.Manuel Schneider2014-05-201-47/+9Star
| |
* | Reduce codebaseManuel Schneider2014-05-201-96/+14Star
|/ | | | | | * Drop Prepare MainWindow::prepareForProjection * Drop redundant code in prepareForProjection (now unicast) * Adjust comments
* Merge branch 'master' of git.openslx.org:pvs2Björn Hagemeister2014-05-191-66/+13Star
|\
| * Make toolbar static on left sideManuel Schneider2014-05-161-66/+13Star
| | | | | | | | | | | | | | * Redudce unnecessary codebase by dropping curious nested timerId & timerTimeout * Use the resizeEvent properly * Make size of buttons static * Drop unnecesary ui properties
* | Help windowBjörn Hagemeister2014-05-191-0/+11
|/
* Several changes:Manuel Schneider2014-05-161-131/+218
| | | | | | | | | | * Change the messagebox text * Add button stub for exclusiveStudentToTutor * Split prepareProjection in broacast, unicast and exclusiveunicast (stub) * Make multiple used, hardcoded strings static const member of mainwindow * Replace multiple loops asking for selection and tutor by membervariable * references to the connectionframe of the latter * Complete missing error messages
* Fix segmentation fault after looking all screens and there is one client ↵Björn Hagemeister2014-05-131-1/+1
| | | | disconnected.
* Configured not locking the screen, if manager and client working on same ↵Björn Hagemeister2014-05-121-55/+51Star
| | | | | | machine. Plus changing symbol for tutor2all button.
* Fixed curious text in warningsManuel Schneider2014-05-051-1/+1
|
* KISS'n'DRY for more cohesionManuel Schneider2014-04-301-26/+16Star
|
* cant fire the timer inside the button slots since they are called somewhere ↵Manuel Schneider2014-04-301-28/+37
| | | | wlse too
* Disable all buttons if one is clicked and enable them after a specified timeManuel Schneider2014-04-291-26/+30
|
* Adding comments for each method in the .cpp files and class definition in ↵Björn Hagemeister2014-04-281-0/+160
| | | | the .h files.
* Reduced button block code. Moved some magic number to header.Manuel Schneider2014-04-241-24/+24
|
* Merge branch 'master' of git.openslx.org:pvs2Björn Hagemeister2014-04-231-2/+13
|\
| * [SERVER] Fixed tracking of which clients is watching (trying to watch) whichManuel Schneider2014-04-231-2/+13
| | | | | | | | other client