~codygarver/snap-elementary/fix-1329550

« back to all changes in this revision

Viewing changes to src/Widgets/SnapStatic.vala

  • Committer: Mario Guerriero
  • Date: 2012-01-02 20:52:39 UTC
  • Revision ID: mefrio.g@gmail.com-20120102205239-st6hz3nnu0rple8d
a bit better

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- Mode: vala; indent-tabs-mode: nil; tab-width: 4 -*-
2
 
/***
3
 
  BEGIN LICENSE
4
 
        
5
 
  Copyright (C) 2011 Mario Guerriero <mefrio.g@gmail.com>
6
 
  This program is free software: you can redistribute it and/or modify it       
7
 
  under the terms of the GNU Lesser General Public License version 3, as
8
 
  published     by the Free Software Foundation.
9
 
        
10
 
  This program is distributed in the hope that it will be useful, but   
11
 
  WITHOUT ANY WARRANTY; without even the implied warranties of  
12
 
  MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR    
13
 
  PURPOSE.  See the GNU General Public License for more details.
14
 
        
15
 
  You should have received a copy of the GNU General Public License along       
16
 
  with this program.  If not, see <http://www.gnu.org/licenses>
17
 
  
18
 
  END LICENSE   
19
 
***/
20
 
 
21
 
using Gtk;
22
 
using Granite.Widgets;
23
 
 
24
 
namespace Snap.Widgets {
25
 
    
26
 
    public class SnapStatic : StaticNotebook {
27
 
    
28
 
        public SnapStatic () {
29
 
            setup_static ();
30
 
        }
31
 
        
32
 
        void setup_static () {
33
 
            
34
 
            append_page (new VBox (false, 0), new Label ("All"));
35
 
            append_page (new VBox (false, 0), new Label ("Photo"));  
36
 
            append_page (new VBox (false, 0), new Label ("Video"));   
37
 
            
38
 
        }
39
 
        
40
 
    }
41
 
    
42
 
}
 
 
b'\\ No newline at end of file'