-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
56 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2023 Vladimir Sadovnikov <[email protected]> | ||
* Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2024 Vladimir Sadovnikov <[email protected]> | ||
* | ||
* This file is part of lsp-tk-lib | ||
* Created on: 16 июн. 2020 г. | ||
|
@@ -61,7 +61,7 @@ namespace lsp | |
protected: | ||
virtual void hide_widget() override; | ||
virtual void show_widget() override; | ||
virtual status_t sync_size() override; | ||
virtual status_t sync_size(bool force) override; | ||
virtual void size_request(ws::size_limit_t *r) override; | ||
|
||
virtual status_t post_init(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2023 Vladimir Sadovnikov <[email protected]> | ||
* Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2024 Vladimir Sadovnikov <[email protected]> | ||
* | ||
* This file is part of lsp-tk-lib | ||
* Created on: 16 июн. 2017 г. | ||
|
@@ -110,7 +110,7 @@ namespace lsp | |
|
||
status_t do_render(); | ||
void do_destroy(); | ||
virtual status_t sync_size(); | ||
virtual status_t sync_size(bool force); | ||
status_t update_pointer(); | ||
|
||
// Mouse operations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Copyright (C) 2023 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2023 Vladimir Sadovnikov <[email protected]> | ||
* Copyright (C) 2024 Linux Studio Plugins Project <https://lsp-plug.in/> | ||
* (C) 2024 Vladimir Sadovnikov <[email protected]> | ||
* | ||
* This file is part of lsp-tk-lib | ||
* Created on: 16 июн. 2020 г. | ||
|
@@ -123,7 +123,7 @@ namespace lsp | |
return STATUS_OK; | ||
} | ||
|
||
status_t PopupWindow::sync_size() | ||
status_t PopupWindow::sync_size(bool force) | ||
{ | ||
ws::size_limit_t sr; | ||
ws::rectangle_t xr; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters