PageRenderTime 25ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/Expertbot/ui_printoptiondialog.h

http://machiabot.googlecode.com/
C Header | 152 lines | 108 code | 36 blank | 8 comment | 1 complexity | 5ca5c88d042d3bc4237b1e762c3759bb MD5 | raw file
  1. /********************************************************************************
  2. ** Form generated from reading ui file 'printoptiondialog.ui'
  3. **
  4. ** Created: Wed Mar 24 21:58:54 2010
  5. ** by: Qt User Interface Compiler version 4.5.2
  6. **
  7. ** WARNING! All changes made in this file will be lost when recompiling ui file!
  8. ********************************************************************************/
  9. #ifndef UI_PRINTOPTIONDIALOG_H
  10. #define UI_PRINTOPTIONDIALOG_H
  11. #include <QtCore/QVariant>
  12. #include <QtGui/QAction>
  13. #include <QtGui/QApplication>
  14. #include <QtGui/QButtonGroup>
  15. #include <QtGui/QDialog>
  16. #include <QtGui/QDialogButtonBox>
  17. #include <QtGui/QGroupBox>
  18. #include <QtGui/QHBoxLayout>
  19. #include <QtGui/QHeaderView>
  20. #include <QtGui/QRadioButton>
  21. #include <QtGui/QSpacerItem>
  22. #include <QtGui/QSpinBox>
  23. #include <QtGui/QVBoxLayout>
  24. QT_BEGIN_NAMESPACE
  25. class Ui_PrintOptionDialog
  26. {
  27. public:
  28. QVBoxLayout *verticalLayout_2;
  29. QGroupBox *groupBox;
  30. QVBoxLayout *verticalLayout;
  31. QRadioButton *printActiveBoard;
  32. QRadioButton *printActiveBranch;
  33. QHBoxLayout *horizontalLayout;
  34. QRadioButton *printActiveBranchN;
  35. QSpinBox *activeBranchMovesPerPage;
  36. QRadioButton *printAllBranches;
  37. QHBoxLayout *horizontalLayout_2;
  38. QRadioButton *printAllBranchesN;
  39. QSpinBox *allBranchMovesPerPage;
  40. QSpacerItem *verticalSpacer;
  41. QDialogButtonBox *buttonBox;
  42. void setupUi(QDialog *PrintOptionDialog)
  43. {
  44. if (PrintOptionDialog->objectName().isEmpty())
  45. PrintOptionDialog->setObjectName(QString::fromUtf8("PrintOptionDialog"));
  46. PrintOptionDialog->resize(376, 304);
  47. verticalLayout_2 = new QVBoxLayout(PrintOptionDialog);
  48. verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
  49. groupBox = new QGroupBox(PrintOptionDialog);
  50. groupBox->setObjectName(QString::fromUtf8("groupBox"));
  51. verticalLayout = new QVBoxLayout(groupBox);
  52. verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
  53. printActiveBoard = new QRadioButton(groupBox);
  54. printActiveBoard->setObjectName(QString::fromUtf8("printActiveBoard"));
  55. printActiveBoard->setChecked(true);
  56. verticalLayout->addWidget(printActiveBoard);
  57. printActiveBranch = new QRadioButton(groupBox);
  58. printActiveBranch->setObjectName(QString::fromUtf8("printActiveBranch"));
  59. verticalLayout->addWidget(printActiveBranch);
  60. horizontalLayout = new QHBoxLayout();
  61. horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
  62. printActiveBranchN = new QRadioButton(groupBox);
  63. printActiveBranchN->setObjectName(QString::fromUtf8("printActiveBranchN"));
  64. horizontalLayout->addWidget(printActiveBranchN);
  65. activeBranchMovesPerPage = new QSpinBox(groupBox);
  66. activeBranchMovesPerPage->setObjectName(QString::fromUtf8("activeBranchMovesPerPage"));
  67. activeBranchMovesPerPage->setMaximumSize(QSize(50, 16777215));
  68. activeBranchMovesPerPage->setMaximum(1000);
  69. activeBranchMovesPerPage->setValue(50);
  70. horizontalLayout->addWidget(activeBranchMovesPerPage);
  71. verticalLayout->addLayout(horizontalLayout);
  72. printAllBranches = new QRadioButton(groupBox);
  73. printAllBranches->setObjectName(QString::fromUtf8("printAllBranches"));
  74. verticalLayout->addWidget(printAllBranches);
  75. horizontalLayout_2 = new QHBoxLayout();
  76. horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
  77. printAllBranchesN = new QRadioButton(groupBox);
  78. printAllBranchesN->setObjectName(QString::fromUtf8("printAllBranchesN"));
  79. horizontalLayout_2->addWidget(printAllBranchesN);
  80. allBranchMovesPerPage = new QSpinBox(groupBox);
  81. allBranchMovesPerPage->setObjectName(QString::fromUtf8("allBranchMovesPerPage"));
  82. allBranchMovesPerPage->setMaximumSize(QSize(50, 16777215));
  83. allBranchMovesPerPage->setMaximum(1000);
  84. allBranchMovesPerPage->setValue(50);
  85. horizontalLayout_2->addWidget(allBranchMovesPerPage);
  86. verticalLayout->addLayout(horizontalLayout_2);
  87. verticalLayout_2->addWidget(groupBox);
  88. verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
  89. verticalLayout_2->addItem(verticalSpacer);
  90. buttonBox = new QDialogButtonBox(PrintOptionDialog);
  91. buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
  92. buttonBox->setOrientation(Qt::Horizontal);
  93. buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
  94. verticalLayout_2->addWidget(buttonBox);
  95. retranslateUi(PrintOptionDialog);
  96. QObject::connect(buttonBox, SIGNAL(accepted()), PrintOptionDialog, SLOT(accept()));
  97. QObject::connect(buttonBox, SIGNAL(rejected()), PrintOptionDialog, SLOT(reject()));
  98. QMetaObject::connectSlotsByName(PrintOptionDialog);
  99. } // setupUi
  100. void retranslateUi(QDialog *PrintOptionDialog)
  101. {
  102. PrintOptionDialog->setWindowTitle(QApplication::translate("PrintOptionDialog", "Print Options", 0, QApplication::UnicodeUTF8));
  103. groupBox->setTitle(QApplication::translate("PrintOptionDialog", "Print Options", 0, QApplication::UnicodeUTF8));
  104. printActiveBoard->setText(QApplication::translate("PrintOptionDialog", "Print current board.", 0, QApplication::UnicodeUTF8));
  105. printActiveBranch->setText(QApplication::translate("PrintOptionDialog", "Print active branch.", 0, QApplication::UnicodeUTF8));
  106. printActiveBranchN->setText(QApplication::translate("PrintOptionDialog", "Print active branch, Number of moves per page.", 0, QApplication::UnicodeUTF8));
  107. printAllBranches->setText(QApplication::translate("PrintOptionDialog", "Print all branches.", 0, QApplication::UnicodeUTF8));
  108. printAllBranchesN->setText(QApplication::translate("PrintOptionDialog", "Print all branches, Number of moves per page.", 0, QApplication::UnicodeUTF8));
  109. Q_UNUSED(PrintOptionDialog);
  110. } // retranslateUi
  111. };
  112. namespace Ui {
  113. class PrintOptionDialog: public Ui_PrintOptionDialog {};
  114. } // namespace Ui
  115. QT_END_NAMESPACE
  116. #endif // UI_PRINTOPTIONDIALOG_H