Add new components, ListBox and EditPatientDialog.

This commit is contained in:
Krad
2022-04-01 15:32:23 +08:00
parent 3835339758
commit 3fecd89689
4 changed files with 306 additions and 0 deletions

21
src/components/Listbox.h Normal file
View File

@@ -0,0 +1,21 @@
//
// Created by Krad on 2022/3/21.
//
#ifndef GUI_LISTBOX_H
#define GUI_LISTBOX_H
#include <QToolButton>
class Listbox: public QToolButton {
public:
explicit Listbox(QWidget* parent = nullptr){};
virtual ~Listbox(){};
protected:
virtual void paintEvent(QPaintEvent* e) override;
private:
};
#endif //GUI_LISTBOX_H