| 
							- /*
 -  * DISTRHO Plugin Framework (DPF)
 -  * Copyright (C) 2012-2014 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 EXAMPLE_COLOR_WIDGET_HPP_INCLUDED
 - #define EXAMPLE_COLOR_WIDGET_HPP_INCLUDED
 - 
 - // ------------------------------------------------------
 - // DGL Stuff
 - 
 - #include "Widget.hpp"
 - #include "Window.hpp"
 - 
 - // ------------------------------------------------------
 - // use namespace
 - 
 - using DGL::IdleCallback;
 - using DGL::Rectangle;
 - using DGL::Widget;
 - using DGL::Window;
 - 
 - // ------------------------------------------------------
 - // our widget
 - 
 - class ExampleColorWidget : public Widget,
 -                            public IdleCallback
 - {
 - public:
 -     ExampleColorWidget(Window& parent)
 -         : Widget(parent),
 -           cur('r'),
 -           reverse(false),
 -           r(0), g(0), b(0)
 -     {
 -         setSize(300, 300);
 - 
 -         parent.addIdleCallback(this);
 -     }
 - 
 - protected:
 -     void idleCallback() noexcept override
 -     {
 -         switch (cur)
 -         {
 -         case 'r':
 -             if (reverse)
 -             {
 -                 if (--r == 0)
 -                   cur = 'g';
 -             }
 -             else
 -             {
 -                 if (++r == 100)
 -                     cur = 'g';
 -             }
 -             break;
 - 
 -         case 'g':
 -             if (reverse)
 -             {
 -                 if (--g == 0)
 -                   cur = 'b';
 -             }
 -             else
 -             {
 -                 if (++g == 100)
 -                   cur = 'b';
 -             }
 -             break;
 - 
 -         case 'b':
 -             if (reverse)
 -             {
 -                 if (--b == 0)
 -                 {
 -                     cur = 'r';
 -                     reverse = false;
 -                 }
 -             }
 -             else
 -             {
 -                 if (++b == 100)
 -                 {
 -                     cur = 'r';
 -                     reverse = true;
 -                 }
 -             }
 -             break;
 -         }
 - 
 -         repaint();
 -     }
 - 
 -     void onDisplay() override
 -     {
 -         // paint bg color (in full size)
 -         glColor3b(r, g, b);
 -         bgFull.draw();
 - 
 -         // paint inverted color (in 2/3 size)
 -         glColor3b(100-r, 100-g, 100-b);
 -         bgSmall.draw();
 -     }
 - 
 -     void onResize(const ResizeEvent& ev) override
 -     {
 -         const int width  = ev.size.getWidth();
 -         const int height = ev.size.getHeight();
 - 
 -         // full bg
 -         bgFull = Rectangle<int>(0, 0, width, height);
 - 
 -         // small bg, centered 2/3 size
 -         bgSmall = Rectangle<int>(width/6, height/6, width*2/3, height*2/3);
 -     }
 - 
 -     char cur;
 -     bool reverse;
 -     int r, g, b;
 - 
 -     Rectangle<int> bgFull, bgSmall;
 - };
 - 
 - 
 - // ------------------------------------------------------
 - 
 - #endif // EXAMPLE_COLOR_WIDGET_HPP_INCLUDED
 
 
  |