/* * Copyright (C) 2020 Linux Studio Plugins Project * (C) 2020 Vladimir Sadovnikov * * This file is part of lsp-plugins * Created on: 11 апр. 2020 г. * * lsp-plugins is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * lsp-plugins is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with lsp-plugins. If not, see . */ #ifndef UI_TK_WIDGETS_LSPVOID_H_ #define UI_TK_WIDGETS_LSPVOID_H_ namespace lsp { namespace tk { class LSPVoid: public LSPWidget { public: static const w_class_t metadata; protected: LSPSizeConstraints sConstraints; public: explicit LSPVoid(LSPDisplay *dpy); virtual ~LSPVoid(); public: inline LSPSizeConstraints *constraints() { return &sConstraints; } public: virtual void render(ISurface *s, bool force); virtual void size_request(size_request_t *r); }; } /* namespace tk */ } /* namespace lsp */ #endif /* UI_TK_WIDGETS_LSPVOID_H_ */