Class: Ui_DebugConsoleDialog

Inherits:
Object
  • Object
show all
Defined in:
lib/tmis/interface/forms/ui_debug_console.rb

Overview

** Form generated from reading ui file ‘debug_console.ui’ ** ** Created: Wed Sep 4 12:32:25 2013 ** by: Qt User Interface Compiler version 4.8.5 ** ** WARNING! All changes made in this file will be lost when recompiling ui file!

Direct Known Subclasses

Ui::DebugConsoleDialog

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#enterPushButtonObject (readonly)

Returns the value of attribute enterPushButton.



17
18
19
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 17

def enterPushButton
  @enterPushButton
end

#gridLayoutObject (readonly)

Returns the value of attribute gridLayout.



12
13
14
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 12

def gridLayout
  @gridLayout
end

#gridLayout_2Object (readonly)

Returns the value of attribute gridLayout_2.



11
12
13
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 11

def gridLayout_2
  @gridLayout_2
end

#horizontalLayoutObject (readonly)

Returns the value of attribute horizontalLayout.



15
16
17
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 15

def horizontalLayout
  @horizontalLayout
end

#lineEditObject (readonly)

Returns the value of attribute lineEdit.



16
17
18
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 16

def lineEdit
  @lineEdit
end

#textEditObject (readonly)

Returns the value of attribute textEdit.



14
15
16
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 14

def textEdit
  @textEdit
end

#verticalLayoutObject (readonly)

Returns the value of attribute verticalLayout.



13
14
15
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 13

def verticalLayout
  @verticalLayout
end

Instance Method Details

#retranslate_ui(debugConsoleDialog) ⇒ Object

retranslateUi



72
73
74
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 72

def retranslate_ui(debugConsoleDialog)
    retranslateUi(debugConsoleDialog)
end

#retranslateUi(debugConsoleDialog) ⇒ Object



67
68
69
70
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 67

def retranslateUi(debugConsoleDialog)
debugConsoleDialog.windowTitle = Qt::Application.translate("DebugConsoleDialog", "Dialog", nil, Qt::Application::UnicodeUTF8)
@enterPushButton.text = Qt::Application.translate("DebugConsoleDialog", "Enter", nil, Qt::Application::UnicodeUTF8)
end

#setup_ui(debugConsoleDialog) ⇒ Object

setupUi



63
64
65
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 63

def setup_ui(debugConsoleDialog)
    setupUi(debugConsoleDialog)
end

#setupUi(debugConsoleDialog) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/tmis/interface/forms/ui_debug_console.rb', line 19

def setupUi(debugConsoleDialog)
if debugConsoleDialog.objectName.nil?
    debugConsoleDialog.objectName = "debugConsoleDialog"
end
debugConsoleDialog.resize(496, 190)
debugConsoleDialog.locale = Qt::Locale.new(Qt::Locale::Russian, Qt::Locale::RussianFederation)
@gridLayout_2 = Qt::GridLayout.new(debugConsoleDialog)
@gridLayout_2.objectName = "gridLayout_2"
@gridLayout = Qt::GridLayout.new()
@gridLayout.objectName = "gridLayout"
@verticalLayout = Qt::VBoxLayout.new()
@verticalLayout.objectName = "verticalLayout"
@textEdit = Qt::TextEdit.new(debugConsoleDialog)
@textEdit.objectName = "textEdit"

@verticalLayout.addWidget(@textEdit)

@horizontalLayout = Qt::HBoxLayout.new()
@horizontalLayout.objectName = "horizontalLayout"
@lineEdit = Qt::LineEdit.new(debugConsoleDialog)
@lineEdit.objectName = "lineEdit"

@horizontalLayout.addWidget(@lineEdit)

@enterPushButton = Qt::PushButton.new(debugConsoleDialog)
@enterPushButton.objectName = "enterPushButton"

@horizontalLayout.addWidget(@enterPushButton)


@verticalLayout.addLayout(@horizontalLayout)


@gridLayout.addLayout(@verticalLayout, 0, 1, 1, 1)


@gridLayout_2.addLayout(@gridLayout, 0, 0, 1, 1)


retranslateUi(debugConsoleDialog)

Qt::MetaObject.connectSlotsByName(debugConsoleDialog)
end