ruler.h revision c5ad14e3e964f997e716953743842f01274a2993
#ifndef __SP_RULER_H__
#define __SP_RULER_H__
/*
* Customized ruler class for inkscape
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Frank Felfe <innerspace@iname.com>
*
* Copyright (C) 1999-2002 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <gtk/gtkruler.h>
#include "sp-metric.h"
#include <glib.h>
struct SPHRuler
{
};
struct SPHRulerClass
{
};
GtkType sp_hruler_get_type (void);
GtkWidget* sp_hruler_new (void);
// vruler
struct SPVRuler
{
};
struct SPVRulerClass
{
};
GtkType sp_vruler_get_type (void);
GtkWidget* sp_vruler_new (void);
#endif /* __SP_RULER_H__ */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :