mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 11:04:25 -04:00
Update russian translation. Need to subtract and to bring the terminology to a common denominator
This commit is contained in:
23
custom_widgets/yacreader_field_edit.h
Normal file
23
custom_widgets/yacreader_field_edit.h
Normal file
@ -0,0 +1,23 @@
|
||||
#ifndef YACREADER_FIELD_EDIT_H
|
||||
#define YACREADER_FIELD_EDIT_H
|
||||
|
||||
#include <QLineEdit>
|
||||
|
||||
class QAction;
|
||||
class QFocusEvent;
|
||||
|
||||
class YACReaderFieldEdit : public QLineEdit
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
YACReaderFieldEdit(QWidget * parent = 0);
|
||||
void clear();
|
||||
void setDisabled(bool disabled);
|
||||
protected:
|
||||
void focusInEvent(QFocusEvent* e);
|
||||
private:
|
||||
QAction * restore;
|
||||
|
||||
};
|
||||
|
||||
#endif // YACREADER_FIELD_EDIT_H
|
Reference in New Issue
Block a user