refactor: Refactor feature browser, move to top-left, and increase font size
Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
19
src/FeatureBrowser.h
Normal file
19
src/FeatureBrowser.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef FEATUREBROWSER_H
|
||||
#define FEATUREBROWSER_H
|
||||
|
||||
class QPainter;
|
||||
class Document;
|
||||
|
||||
class FeatureBrowser
|
||||
{
|
||||
public:
|
||||
FeatureBrowser();
|
||||
|
||||
void setDocument(Document* document);
|
||||
void paint(QPainter& painter, int viewportWidth, int viewportHeight);
|
||||
|
||||
private:
|
||||
Document* m_document = nullptr;
|
||||
};
|
||||
|
||||
#endif // FEATUREBROWSER_H
|
||||
Reference in New Issue
Block a user