mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 04:40:05 +08:00
20 lines
320 B
Python
Vendored
20 lines
320 B
Python
Vendored
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.
|