basedisplay_wgt.cpp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #include "basedisplay_wgt.h"
  2. #include "ui_basedisplay_wgt.h"
  3. #include "attribute_wgt.h"
  4. BaseDisplay_wgt::BaseDisplay_wgt(QWidget *parent) :
  5. QWidget(parent),
  6. ui(new Ui::BaseDisplay_wgt)
  7. {
  8. ui->setupUi(this);
  9. Attribute_wgt *wgt = new Attribute_wgt;
  10. init_ui(wgt);
  11. }
  12. BaseDisplay_wgt::~BaseDisplay_wgt()
  13. {
  14. delete ui;
  15. if(m_tree_path_displaWgt!=nullptr){
  16. delete m_tree_path_displaWgt;
  17. }
  18. }
  19. void BaseDisplay_wgt::init_ui(QWidget *para)
  20. {
  21. para->setMinimumHeight(200);
  22. // this->setStyleSheet("background:rgb(199, 216, 255);");
  23. m_tree_path_displaWgt = new QWidget;
  24. m_tree_path_displaWgt->setMinimumWidth(100);
  25. QPushButton *file_btn = new QPushButton(QIcon("path/to/file_icon.png"), "File");
  26. file_btn->setMaximumWidth(100);
  27. QPushButton *up_btn = new QPushButton(QIcon("path/to/up_icon.png"), "↑");
  28. QPushButton *down_btn = new QPushButton(QIcon("path/to/down_icon.png"), "↓");
  29. QPushButton *left_btn = new QPushButton(QIcon("path/to/left_icon.png"), "<-");
  30. QPushButton *right_btn = new QPushButton(QIcon("path/to/right_icon.png"), "->");
  31. up_btn->setMaximumWidth(50);
  32. down_btn->setMaximumWidth(50);
  33. left_btn->setMaximumWidth(50);
  34. right_btn->setMaximumWidth(50);
  35. // 按钮创建布局
  36. QVBoxLayout *layout_btn = new QVBoxLayout;
  37. QHBoxLayout *layout1 = new QHBoxLayout;
  38. QHBoxLayout *layout2 = new QHBoxLayout;
  39. layout1->addWidget(file_btn);
  40. layout1->addWidget(up_btn);
  41. layout2->addWidget(left_btn);
  42. layout2->addWidget(right_btn);
  43. layout2->addWidget(down_btn);
  44. layout_btn->addLayout(layout1);
  45. layout_btn->addLayout(layout2);
  46. layout_btn->setSpacing(2);
  47. layout1->setSpacing(2);
  48. layout2->setSpacing(2);
  49. connect(file_btn, &QPushButton::clicked, this, &BaseDisplay_wgt::get_par);
  50. connect(left_btn, &QPushButton::clicked, this, &BaseDisplay_wgt::back);
  51. QHBoxLayout *layout_header = new QHBoxLayout;
  52. layout_header->addWidget(m_tree_path_displaWgt);
  53. layout_header->addLayout(layout_btn);
  54. wgt_layout = new QVBoxLayout; // 创建垂直布局↑↓
  55. wgt_layout->addLayout(layout_header);
  56. wgt_layout->addWidget(para);
  57. current_page = para;
  58. setLayout(wgt_layout);
  59. }
  60. void BaseDisplay_wgt::set_wgt(QWidget *w)
  61. {
  62. wgt_layout->removeWidget(current_page);
  63. wgt_layout->addWidget(w);
  64. }
  65. void BaseDisplay_wgt::get_par()
  66. {
  67. if(treeWidgetExample != nullptr)//点击file_btn,只会出现一个treewidget
  68. {
  69. delete treeWidgetExample;
  70. }
  71. treeWidgetExample = new InfoTree_wgt();
  72. treeWidgetExample->setWindowTitle("Tree Widget Example");
  73. set_wgt(treeWidgetExample);
  74. tree_page = treeWidgetExample;
  75. }
  76. void BaseDisplay_wgt::back()
  77. {
  78. wgt_layout->removeWidget(tree_page);
  79. //wgt_layout->addWidget(current_page);
  80. }