Blame ui/gtk3/separator.vala

Packit Service 1d8f1c
/* vim:set et sts=4 sw=4:
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * ibus - The Input Bus
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * Copyright(c) 2011-2014 Peng Huang <shawn.p.huang@gmail.com>
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * This library is free software; you can redistribute it and/or
Packit Service 1d8f1c
 * modify it under the terms of the GNU Lesser General Public
Packit Service 1d8f1c
 * License as published by the Free Software Foundation; either
Packit Service 1d8f1c
 * version 2.1 of the License, or (at your option) any later version.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * This library is distributed in the hope that it will be useful,
Packit Service 1d8f1c
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 1d8f1c
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 1d8f1c
 * Lesser General Public License for more details.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * You should have received a copy of the GNU Lesser General Public
Packit Service 1d8f1c
 * License along with this library; if not, write to the Free Software
Packit Service 1d8f1c
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
Packit Service 1d8f1c
 * USA
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
Packit Service 1d8f1c
class HSeparator : Gtk.Separator {
Packit Service 1d8f1c
    public HSeparator() {
Packit Service 1d8f1c
        GLib.Object(
Packit Service 1d8f1c
            orientation : Gtk.Orientation.HORIZONTAL,
Packit Service 1d8f1c
            margin : 2
Packit Service 1d8f1c
        );
Packit Service 1d8f1c
    }
Packit Service 1d8f1c
}
Packit Service 1d8f1c
Packit Service 1d8f1c
class VSeparator : Gtk.Separator {
Packit Service 1d8f1c
    public VSeparator() {
Packit Service 1d8f1c
        GLib.Object(
Packit Service 1d8f1c
            orientation : Gtk.Orientation.VERTICAL,
Packit Service 1d8f1c
            margin : 2
Packit Service 1d8f1c
        );
Packit Service 1d8f1c
    }
Packit Service 1d8f1c
}