~azzar1/unity/fix-1028810

« back to all changes in this revision

Viewing changes to dash/PlacesVScrollBar.h

  • Committer: Andrea Azzarone
  • Date: 2012-08-22 13:14:18 UTC
  • mfrom: (2516.1.92 unity)
  • Revision ID: azzaronea@gmail.com-20120822131418-mrfwx82k39xnvl9e
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
2
 
/*
3
 
 * Copyright (C) 2011 Canonical Ltd
4
 
 *
5
 
 * This program is free software: you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License version 3 as
7
 
 * published by the Free Software Foundation.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 
 *
17
 
 * Authored by: Mirco Müller <mirco.mueller@canonical.com>
18
 
 */
19
 
 
20
 
#ifndef PLACES_VSCROLLBAR_H
21
 
#define PLACES_VSCROLLBAR_H
22
 
 
23
 
#include <Nux/Nux.h>
24
 
#include <Nux/View.h>
25
 
#include <Nux/ScrollView.h>
26
 
#include <Nux/BaseWindow.h>
27
 
#include <Nux/VScrollBar.h>
28
 
#include <NuxGraphics/CairoGraphics.h>
29
 
 
30
 
class PlacesVScrollBar : public nux::VScrollBar
31
 
{
32
 
public:
33
 
  PlacesVScrollBar(NUX_FILE_LINE_PROTO);
34
 
  ~PlacesVScrollBar();
35
 
 
36
 
protected:
37
 
  virtual void PreLayoutManagement();
38
 
  virtual long PostLayoutManagement(long LayoutResult);
39
 
 
40
 
  void Draw(nux::GraphicsEngine& gfxContext,
41
 
            bool                 forceDraw);
42
 
 
43
 
private:
44
 
  void UpdateTexture();
45
 
 
46
 
private:
47
 
  nux::BaseTexture* _slider_texture;
48
 
};
49
 
 
50
 
#endif // PLACES_VSCROLLBAR_H