~mapclient.devs/mapclient/stable

« back to all changes in this revision

Viewing changes to mapclient/tools/pmr/oauthcheckdialog.py

  • Committer: musculoskeletal
  • Date: 2014-06-25 05:38:05 UTC
  • mfrom: (1.6.35 testing)
  • Revision ID: musculoskeletal@bioeng1033-20140625053805-jkqhi5oq74vmlntl
Merging testing into stable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''
 
2
MAP Client, a program to generate detailed musculoskeletal models for OpenSim.
 
3
    Copyright (C) 2012  University of Auckland
 
4
 
 
5
This file is part of MAP Client. (http://launchpad.net/mapclient)
 
6
 
 
7
    MAP Client is free software: you can redistribute it and/or modify
 
8
    it under the terms of the GNU General Public License as published by
 
9
    the Free Software Foundation, either version 3 of the License, or
 
10
    (at your option) any later version.
 
11
 
 
12
    MAP Client 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.
 
16
 
 
17
    You should have received a copy of the GNU General Public License
 
18
    along with MAP Client.  If not, see <http://www.gnu.org/licenses/>..
 
19
'''
 
20
import logging
 
21
from PySide import QtGui
 
22
 
 
23
from mapclient.tools.pmr.ui_oauthcheckdialog import Ui_OAuthCheckDialog
 
24
 
 
25
logger = logging.getLogger(__name__)
 
26
 
 
27
 
 
28
class OAuthCheckDialog(QtGui.QDialog):
 
29
    """
 
30
    Dialog that other UI elements can spawn to check for existence of
 
31
    token credentials and acquire one from user if it is unavailable.
 
32
    """
 
33
 
 
34
    def __init__(self, parent=None):
 
35
        QtGui.QDialog.__init__(self, parent)
 
36
        self._ui = Ui_OAuthCheckDialog()
 
37
        self._ui.setupUi(self)
 
38
        self._makeConnections()
 
39
 
 
40
    def _makeConnections(self):
 
41
        self._ui.continueButton.clicked.connect(self.event_register)
 
42
 
 
43
    def token(self):
 
44
        return self._ui.tokenLineEdit.text()
 
45