mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 14:50:03 +08:00
20 lines
320 B
Python
20 lines
320 B
Python
|
from PyQt4.QtCore import *
|
||
|
from PyQt4.QtGui import *
|
||
|
|
||
|
#? ['QActionGroup']
|
||
|
QActionGroup
|
||
|
|
||
|
#? ['currentText']
|
||
|
QStyleOptionComboBox().currentText
|
||
|
|
||
|
#? []
|
||
|
QStyleOptionComboBox().currentText.
|
||
|
|
||
|
from PyQt4 import QtGui
|
||
|
|
||
|
#? ['currentText']
|
||
|
QtGui.QStyleOptionComboBox().currentText
|
||
|
|
||
|
#? []
|
||
|
QtGui.QStyleOptionComboBox().currentText.
|