Blame libmetacity/meta-button-layout-private.h

Packit 5e0819
/*
Packit 5e0819
 * Copyright (C) 2001 Havoc Pennington
Packit 5e0819
 * Copyright (C) 2016 Alberts Muktupāvels
Packit 5e0819
 *
Packit 5e0819
 * This program is free software: you can redistribute it and/or modify
Packit 5e0819
 * it under the terms of the GNU General Public License as published by
Packit 5e0819
 * the Free Software Foundation, either version 2 of the License, or
Packit 5e0819
 * (at your option) any later version.
Packit 5e0819
 *
Packit 5e0819
 * This program is distributed in the hope that it will be useful,
Packit 5e0819
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 5e0819
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Packit 5e0819
 * GNU General Public License for more details.
Packit 5e0819
 *
Packit 5e0819
 * You should have received a copy of the GNU General Public License
Packit 5e0819
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Packit 5e0819
 */
Packit 5e0819
Packit 5e0819
#ifndef META_BUTTON_LAYOUT_PRIVATE_H
Packit 5e0819
#define META_BUTTON_LAYOUT_PRIVATE_H
Packit 5e0819
Packit 5e0819
#include "meta-button-private.h"
Packit 5e0819
Packit 5e0819
G_BEGIN_DECLS
Packit 5e0819
Packit 5e0819
typedef struct
Packit 5e0819
{
Packit 5e0819
  MetaButton *left_buttons;
Packit 5e0819
  gint        n_left_buttons;
Packit 5e0819
Packit 5e0819
  MetaButton *right_buttons;
Packit 5e0819
  gint        n_right_buttons;
Packit 5e0819
} MetaButtonLayout;
Packit 5e0819
Packit 5e0819
G_GNUC_INTERNAL
Packit 5e0819
MetaButtonLayout *meta_button_layout_new  (const gchar      *str,
Packit 5e0819
                                           gboolean          invert);
Packit 5e0819
Packit 5e0819
G_GNUC_INTERNAL
Packit 5e0819
void              meta_button_layout_free (MetaButtonLayout *layout);
Packit 5e0819
Packit 5e0819
G_END_DECLS
Packit 5e0819
Packit 5e0819
#endif