mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-15 05:37:09 +02:00
22 lines
405 B
C++
22 lines
405 B
C++
#pragma once
|
|
|
|
#include "boxes/abstract_box.h"
|
|
#include "base/timer.h"
|
|
#include "mtproto/sender.h"
|
|
|
|
class EditDeletedMarkBox : public Ui::BoxContent {
|
|
public:
|
|
EditDeletedMarkBox(QWidget*);
|
|
|
|
protected:
|
|
void setInnerFocus() override;
|
|
void prepare() override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
private:
|
|
void submit();
|
|
void save();
|
|
|
|
object_ptr<Ui::InputField> _text;
|
|
};
|