~ubuntu-branches/ubuntu/precise/ultrastar-ng/precise

« back to all changes in this revision

Viewing changes to include/screen_score.h

  • Committer: Bazaar Package Importer
  • Author(s): Miriam Ruiz, Miriam Ruiz, Mario Bonino, Jon Dowland, Ansgar Burchardt
  • Date: 2008-06-07 16:43:18 UTC
  • mfrom: (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080607164318-4cnzizck1tp8mrwp
Tags: 0.2.1-1
[ Miriam Ruiz ]
* New Upstream Release (Closes: #453132)
* Removed unneeded patches
* Added packages to build deps:
  + libtool
  + portaudio19-dev | portaudio-dev
  + libboost-dev, libboost-thread-dev, libboost-serialization-dev
  + libboost-program-options-dev, libboost-regex-dev
* Moved shared objects to private directory: /usr/lib/ultraster-ng
* Added rpath to binaries to search for shared objects in the private dir
* Uses ultrastar-ng-gstreamer as default, instead of ultrastar-ng-xine,
  since there are significantly less issues with GStreamer.
* Added patch to fix upstream desktop file
* Added -Wl,-as-needed to LDFLAGS
* Replaced fftw3-dev by libfftw3-dev in build dependencies.
* Standards-Version upgraded to 3.7.3

[ Mario Bonino ]
* Fixed data/Makefile.am to install .desktop file and icon

[ Jon Dowland ]
* add Homepage: control field to source stanza
* fix a bashism in debian/rules (Closes: #478634)

[ Ansgar Burchardt ]
* debian/control: Change XS-Vcs-* to Vcs-*
* Remove Homepage semi-field from description

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SCREENSCORE_H__
 
2
#define __SCREENSCORE_H__
 
3
 
 
4
#include "../config.h"
 
5
 
 
6
#include <screen.h>
 
7
#include <cairosvg.h>
 
8
#include <theme.h>
 
9
 
 
10
class CScreenScore: public CScreen {
 
11
  public:
 
12
        CScreenScore(std::string const& name, unsigned int width, unsigned int height);
 
13
        ~CScreenScore();
 
14
        void enter();
 
15
        void exit();
 
16
        void manageEvent(SDL_Event event);
 
17
        void draw();
 
18
  private:
 
19
        CairoSVG* cairo_svg;
 
20
        CThemeScore* theme;
 
21
        unsigned int bg_texture;
 
22
};
 
23
 
 
24
#endif