gtkdatabox_scale.h (gtkdatabox-0.9.3.1) | : | gtkdatabox_scale.h (gtkdatabox-1.0.0) | ||
---|---|---|---|---|
skipping to change at line 17 | skipping to change at line 17 | |||
* as published by the Free Software Foundation; either version 2.1 | * as published by the Free Software Foundation; either version 2.1 | |||
* of the License, or (at your option) any later version. | * of the License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU Lesser General Public License for more details. | * GNU Lesser General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | |||
* along with this program; if not, write to the Free Software | * along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |||
*/ | ||||
/** | ||||
* @file gtkdatabox_scale.h | ||||
* | ||||
* Currently just an enumeration used in several places... | ||||
* | ||||
*/ | */ | |||
#ifndef __GTK_DATABOX_SCALE_H__ | #ifndef __GTK_DATABOX_SCALE_H__ | |||
#define __GTK_DATABOX_SCALE_H__ | #define __GTK_DATABOX_SCALE_H__ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
/** | ||||
* SECTION:gtkdatabox_scale | ||||
* @short_description: scale type enumeration | ||||
* @include: gtkdatabox_scale.h | ||||
* @see_also: #GtkDatabox, #GtkDataboxRuler | ||||
* | ||||
* This file adds the #GtkDataboxScaleType enumeration used in several places. | ||||
*/ | ||||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
/** | /** | |||
* GtkDataboxScaleType: | * GtkDataboxScaleType | |||
* @GTK_DATABOX_SCALE_LINEAR: Linear scale | * @GTK_DATABOX_SCALE_LINEAR: Linear scale | |||
* @GTK_DATABOX_SCALE_LOG2: Logarithmic scale (base 2) | ||||
* @GTK_DATABOX_SCALE_LOG: Logarithmic scale (base 10) | * @GTK_DATABOX_SCALE_LOG: Logarithmic scale (base 10) | |||
* | * | |||
* Scale type for #GtkDatabox and #GtkDataboxRuler objects. | * Scale type for #GtkDatabox and #GtkDataboxRuler objects. | |||
* | * | |||
* See also: #GtkDatabox:scale_type_x, #GtkDatabox:scale_type_y | * See also: #GtkDatabox:scale_type_x, #GtkDatabox:scale_type_y | |||
*/ | */ | |||
typedef enum | typedef enum | |||
{ | { | |||
GTK_DATABOX_SCALE_LINEAR = 0, | GTK_DATABOX_SCALE_LINEAR = 0, | |||
GTK_DATABOX_SCALE_LOG2, | GTK_DATABOX_SCALE_LOG2, | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 12 lines changed or added |