schema_editor/comdel/display/library_display.h

32 lines
546 B
C
Raw Normal View History

2022-04-07 22:21:23 +00:00
#ifndef DISPLAY_LIBRARY_H
#define DISPLAY_LIBRARY_H
#include <QListWidget>
#include <QWidget>
#include <comdel/domain/library.h>
2022-06-19 18:10:44 +00:00
#include <QLabel>
#include "library_list.h"
2022-04-07 22:21:23 +00:00
namespace display {
2022-05-27 06:18:17 +00:00
class Library : public QWidget {
public:
Library();
2022-04-07 22:21:23 +00:00
void refreshContent();
2022-04-07 22:21:23 +00:00
2022-05-27 06:18:17 +00:00
private:
std::optional<domain::Library> library;
2022-04-07 22:21:23 +00:00
2022-05-27 06:18:17 +00:00
LibraryList *componentList;
LibraryList *busList;
2022-04-07 22:21:23 +00:00
2022-06-19 18:10:44 +00:00
QLabel *componentsLabel;
QLabel *busLabel;
2022-05-27 06:18:17 +00:00
};
2022-04-07 22:21:23 +00:00
} // namespace display
#endif // DISPLAY_LIBRARY_H