File: simple-background.hpp

package info (click to toggle)
wayfire 0.9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,732 kB
  • sloc: cpp: 49,708; xml: 2,783; ansic: 699; makefile: 161
file content (16 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef WF_CUBE_SIMPLE_BACKGROUND_HPP
#define WF_CUBE_SIMPLE_BACKGROUND_HPP

#include "cube-background.hpp"

class wf_cube_simple_background : public wf_cube_background_base
{
    wf::option_wrapper_t<wf::color_t> background_color{"cube/background"};

  public:
    wf_cube_simple_background();
    virtual void render_frame(const wf::render_target_t& fb,
        wf_cube_animation_attribs& attribs) override;
};

#endif /* end of include guard: WF_CUBE_SIMPLE_BACKGROUND_HPP */