eric6/Plugins/VcsPlugins/vcsGit/GitListDialog.py

changeset 6942
2602857055c5
parent 6645
ad476851d7e0
child 7229
53054eb5b15a
equal deleted inserted replaced
6941:f99d60d6b59b 6942:2602857055c5
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2014 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module implementing a dialog to select from a list.
8 """
9
10 from __future__ import unicode_literals
11
12 from PyQt5.QtWidgets import QDialog
13
14 from .Ui_GitListDialog import Ui_GitListDialog
15
16
17 class GitListDialog(QDialog, Ui_GitListDialog):
18 """
19 Class implementing a dialog to select from a list.
20 """
21 def __init__(self, selections, parent=None):
22 """
23 Constructor
24
25 @param selections list of entries to select from (list of string)
26 @param parent reference to the parent widget (QWidget)
27 """
28 super(GitListDialog, self).__init__(parent)
29 self.setupUi(self)
30
31 self.selectionList.addItems(selections)
32
33 def getSelection(self):
34 """
35 Public method to return the selected entries.
36
37 @return list of selected entries (list of string)
38 """
39 selection = []
40 for itm in self.selectionList.selectedItems():
41 selection.append(itm.text())
42
43 return selection

eric ide

mercurial