=begin ** Form generated from reading ui file 'search_dialog.ui' ** ** Created: Mon Jan 31 16:10:23 2011 ** by: Qt User Interface Compiler version 4.5.1 ** ** WARNING! All changes made in this file will be lost when recompiling ui file! =end class Ui_SearchDialog attr_reader :button_box attr_reader :selected_rows attr_reader :selected_columns attr_reader :search_label attr_reader :search_combo attr_reader :from_start attr_reader :regex attr_reader :whole_words attr_reader :forwards attr_reader :backwards def setupUi(searchDialog) if searchDialog.objectName.nil? searchDialog.objectName = "searchDialog" end searchDialog.windowModality = Qt::WindowModal searchDialog.resize(307, 400) icon = Qt::Icon.new("../../hilfer/bin/hilfer-icon.png") searchDialog.windowIcon = icon @button_box = Qt::DialogButtonBox.new(searchDialog) @button_box.objectName = "button_box" @button_box.geometry = Qt::Rect.new(30, 240, 261, 32) @button_box.orientation = Qt::Horizontal @button_box.standardButtons = Qt::DialogButtonBox::Cancel|Qt::DialogButtonBox::NoButton|Qt::DialogButtonBox::Ok @selected_rows = Qt::CheckBox.new(searchDialog) @selected_rows.objectName = "selected_rows" @selected_rows.enabled = false @selected_rows.geometry = Qt::Rect.new(30, 280, 191, 21) @selected_columns = Qt::CheckBox.new(searchDialog) @selected_columns.objectName = "selected_columns" @selected_columns.enabled = false @selected_columns.geometry = Qt::Rect.new(30, 310, 191, 21) @search_label = Qt::Label.new(searchDialog) @search_label.objectName = "search_label" @search_label.geometry = Qt::Rect.new(20, 10, 51, 21) @search_label.textFormat = Qt::PlainText @search_combo = Qt::ComboBox.new(searchDialog) @search_combo.objectName = "search_combo" @search_combo.geometry = Qt::Rect.new(90, 10, 201, 25) @search_combo.focusPolicy = Qt::StrongFocus @search_combo.editable = true @from_start = Qt::CheckBox.new(searchDialog) @from_start.objectName = "from_start" @from_start.geometry = Qt::Rect.new(90, 50, 191, 21) @regex = Qt::CheckBox.new(searchDialog) @regex.objectName = "regex" @regex.geometry = Qt::Rect.new(90, 80, 191, 21) @whole_words = Qt::CheckBox.new(searchDialog) @whole_words.objectName = "whole_words" @whole_words.geometry = Qt::Rect.new(90, 110, 191, 21) @forwards = Qt::RadioButton.new(searchDialog) @forwards.objectName = "forwards" @forwards.geometry = Qt::Rect.new(90, 140, 171, 26) @forwards.checked = true @backwards = Qt::RadioButton.new(searchDialog) @backwards.objectName = "backwards" @backwards.geometry = Qt::Rect.new(90, 170, 176, 26) @search_label.buddy = @search_combo Qt::Widget.setTabOrder(@search_combo, @selected_columns) Qt::Widget.setTabOrder(@selected_columns, @selected_rows) Qt::Widget.setTabOrder(@selected_rows, @button_box) retranslateUi(searchDialog) Qt::Object.connect(@button_box, SIGNAL('accepted()'), searchDialog, SLOT('accept()')) Qt::Object.connect(@button_box, SIGNAL('rejected()'), searchDialog, SLOT('reject()')) Qt::MetaObject.connectSlotsByName(searchDialog) end # setupUi def setup_ui(searchDialog) setupUi(searchDialog) end def retranslateUi(searchDialog) searchDialog.windowTitle = Qt::Application.translate("SearchDialog", "Search", nil, Qt::Application::UnicodeUTF8) @selected_rows.text = Qt::Application.translate("SearchDialog", "Selected Rows", nil, Qt::Application::UnicodeUTF8) @selected_columns.text = Qt::Application.translate("SearchDialog", "Selected Columns", nil, Qt::Application::UnicodeUTF8) @search_label.text = Qt::Application.translate("SearchDialog", "Search", nil, Qt::Application::UnicodeUTF8) @from_start.text = Qt::Application.translate("SearchDialog", "From &Start", nil, Qt::Application::UnicodeUTF8) @regex.text = Qt::Application.translate("SearchDialog", "&Regular Expression", nil, Qt::Application::UnicodeUTF8) @whole_words.text = Qt::Application.translate("SearchDialog", "&Whole Words", nil, Qt::Application::UnicodeUTF8) @forwards.text = Qt::Application.translate("SearchDialog", "&Forwards", nil, Qt::Application::UnicodeUTF8) @backwards.text = Qt::Application.translate("SearchDialog", "&Backwards", nil, Qt::Application::UnicodeUTF8) end # retranslateUi def retranslate_ui(searchDialog) retranslateUi(searchDialog) end end module Ui class SearchDialog < Ui_SearchDialog end end # module Ui