Since GimpVectorTool is no GimpSelectionTool, it does not make sense to

2003-11-15  Simon Budig  <simon@gimp.org>

	* app/tools/gimpvectoroptions.[ch]: Since GimpVectorTool is no
	GimpSelectionTool, it does not make sense to have
	GimpSelectionOptions for it.

	* app/tools/gimpvectoroptions.c
	* app/tools/gimpvectortool.c: Connect the Buttons to the
	Help system and make the to-selection Button modifier
	aware.
This commit is contained in:
Simon Budig
2003-11-14 23:10:24 +00:00
committed by Simon Budig
parent cc718bfa6b
commit 832b51b5a8
4 changed files with 73 additions and 14 deletions

View File

@ -20,7 +20,7 @@
#define __GIMP_VECTOR_OPTIONS_H__
#include "gimpselectionoptions.h"
#include "core/gimptooloptions.h"
#define GIMP_TYPE_VECTOR_OPTIONS (gimp_vector_options_get_type ())
@ -36,10 +36,10 @@ typedef struct _GimpToolOptionsClass GimpVectorOptionsClass;
struct _GimpVectorOptions
{
GimpSelectionOptions parent_instance;
GimpToolOptions parent_instance;
GimpVectorMode edit_mode;
gboolean polygonal;
GimpVectorMode edit_mode;
gboolean polygonal;
};