gntline.h

Mon, 05 Aug 2024 23:38:25 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Mon, 05 Aug 2024 23:38:25 -0500
changeset 1478
e2f689237c38
parent 1451
aa6ec6eb8a32
permissions
-rw-r--r--

Add a turtles target

Since there are no translations or tests this just runs the all target, but
this makes this project consistent with all of the others.

Testing Done:
Ran the turtles.

Reviewed at https://reviews.imfreedom.org/r/3341/

/*
 * GNT - The GLib Ncurses Toolkit
 *
 * GNT is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, see <https://www.gnu.org/licenses/>.
 */

#if !defined(GNT_GLOBAL_HEADER_INSIDE) && !defined(GNT_COMPILATION)
# error "only <gnt.h> may be included directly"
#endif

#ifndef GNT_LINE_H
#define GNT_LINE_H

#include "gntcolors.h"
#include "gntkeys.h"
#include "gntwidget.h"

#define GNT_TYPE_LINE gnt_line_get_type()

G_BEGIN_DECLS

G_DECLARE_FINAL_TYPE(GntLine, gnt_line, GNT, LINE, GntWidget)

/**
 * gnt_hline_new:
 *
 * Create new horizontal line.
 *
 * Returns:  The newly created line.
 */
#define gnt_hline_new() gnt_line_new(FALSE)

/**
 * gnt_vline_new:
 *
 * Create new vertical line.
 *
 * Returns:  The newly created line.
 */
#define gnt_vline_new() gnt_line_new(TRUE)

/**
 * gnt_line_new:
 * @vertical: %TRUE if the line should be vertical, %FALSE for a horizontal
 *            line.
 *
 * Create new line.
 *
 * Returns:  The newly created line.
 */
GntWidget * gnt_line_new(gboolean vertical);

G_END_DECLS

#endif /* GNT_LINE_H */

mercurial