~bruce.ma/unity-greeter/support-hidpi-lp1286878

« back to all changes in this revision

Viewing changes to tests/menubar.vala

  • Committer: Albert Astals
  • Date: 2012-08-30 11:06:25 UTC
  • mto: This revision was merged to the branch mainline in revision 573.
  • Revision ID: albert.astals@canonical.com-20120830110625-ipxg18uag2fz02z6
Just a lot of stuff, just commiting so i can checkout from the VM

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
 *
 
3
 * Copyright (C) 2012 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
 */
 
18
 
 
19
public class MenuBar : Gtk.MenuBar
 
20
{
 
21
    public static const int HEIGHT = 32;
 
22
    public bool high_contrast { get; private set; default = false; }
 
23
 
 
24
    public MenuBar (Background bg, Gtk.AccelGroup ag)
 
25
    {
 
26
    }
 
27
 
 
28
    public void set_layouts (List <LightDM.Layout> layouts)
 
29
    {
 
30
    }
 
31
 
 
32
    public void set_keyboard_state ()
 
33
    {
 
34
    }
 
35
}