|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * DISTRHO Plugin Toolkit (DPT)
- * Copyright (C) 2012-2013 Filipe Coelho <falktx@falktx.com>
- *
- * Permission to use, copy, modify, and/or distribute this software for any purpose with
- * or without fee is hereby granted, provided that the above copyright notice and this
- * permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
- * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
- * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
- * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
- * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
- #ifndef DGL_IMAGE_ABOUT_WINDOW_HPP_INCLUDED
- #define DGL_IMAGE_ABOUT_WINDOW_HPP_INCLUDED
-
- #include "Image.hpp"
- #include "Widget.hpp"
- #include "Window.hpp"
-
- #ifdef PROPER_CPP11_SUPPORT
- # include <cstdint>
- #else
- # include <stdint.h>
- #endif
-
- START_NAMESPACE_DGL
-
- // -----------------------------------------------------------------------
-
- class ImageAboutWindow : public Window,
- public Widget
- {
- public:
- ImageAboutWindow(App& app, Window& parent, const Image& image = Image());
- ImageAboutWindow(Widget* widget, const Image& image = Image());
-
- void setImage(const Image& image);
-
- protected:
- void onDisplay() override;
- bool onMouse(int button, bool press, int x, int y) override;
- bool onKeyboard(bool press, uint32_t key) override;
-
- private:
- Image fImgBackground;
- };
-
- // -----------------------------------------------------------------------
-
- END_NAMESPACE_DGL
-
- #endif // DGL_IMAGE_ABOUT_WINDOW_HPP_INCLUDED
|