mirror of
https://github.com/leozide/leocad
synced 2024-11-16 07:47:27 +01:00
20 lines
468 B
C++
20 lines
468 B
C++
#pragma once
|
|
|
|
class lcFindReplaceWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcFindReplaceWidget(QWidget* Parent, lcModel* Model, bool Replace);
|
|
|
|
protected slots:
|
|
void FindColorIndexChanged(int ColorIndex);
|
|
void FindTextEdited(const QString& Text);
|
|
void FindActivated(int Index);
|
|
void ReplaceColorIndexChanged(int ColorIndex);
|
|
void ReplaceActivated(int Index);
|
|
|
|
protected:
|
|
QComboBox* mFindPartComboBox = nullptr;
|
|
QComboBox* mReplacePartComboBox = nullptr;
|
|
};
|