Switch new selection style explicitly off for some types
This commit is contained in:
parent
ecc61ba784
commit
8122723360
|
@ -53,6 +53,7 @@ public:
|
||||||
|
|
||||||
virtual void attach(App::DocumentObject *);
|
virtual void attach(App::DocumentObject *);
|
||||||
virtual void setDisplayMode(const char* ModeName);
|
virtual void setDisplayMode(const char* ModeName);
|
||||||
|
virtual bool useNewSelectionModel(void) const {return false;}
|
||||||
/// returns a list of all possible modes
|
/// returns a list of all possible modes
|
||||||
virtual std::vector<std::string> getDisplayModes(void) const;
|
virtual std::vector<std::string> getDisplayModes(void) const;
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@ public:
|
||||||
|
|
||||||
virtual void attach(App::DocumentObject *);
|
virtual void attach(App::DocumentObject *);
|
||||||
virtual void setDisplayMode(const char* ModeName);
|
virtual void setDisplayMode(const char* ModeName);
|
||||||
|
virtual bool useNewSelectionModel(void) const {return false;}
|
||||||
/// returns a list of all possible modes
|
/// returns a list of all possible modes
|
||||||
virtual std::vector<std::string> getDisplayModes(void) const;
|
virtual std::vector<std::string> getDisplayModes(void) const;
|
||||||
virtual void updateData(const App::Property*);
|
virtual void updateData(const App::Property*);
|
||||||
|
|
|
@ -118,6 +118,7 @@ public:
|
||||||
App::PropertyColor LineColor;
|
App::PropertyColor LineColor;
|
||||||
|
|
||||||
virtual void attach(App::DocumentObject *);
|
virtual void attach(App::DocumentObject *);
|
||||||
|
virtual bool useNewSelectionModel(void) const {return false;}
|
||||||
virtual QIcon getIcon() const;
|
virtual QIcon getIcon() const;
|
||||||
/// Sets the correct display mode
|
/// Sets the correct display mode
|
||||||
virtual void setDisplayMode(const char* ModeName);
|
virtual void setDisplayMode(const char* ModeName);
|
||||||
|
|
|
@ -70,6 +70,7 @@ public:
|
||||||
|
|
||||||
/// Extracts the mesh data from the feature \a pcFeature and creates an Inventor node \a SoNode with these data.
|
/// Extracts the mesh data from the feature \a pcFeature and creates an Inventor node \a SoNode with these data.
|
||||||
void attach(App::DocumentObject* pcFeature);
|
void attach(App::DocumentObject* pcFeature);
|
||||||
|
virtual bool useNewSelectionModel(void) const {return false;}
|
||||||
/// Sets the viewing mode
|
/// Sets the viewing mode
|
||||||
void setDisplayMode(const char* ModeName);
|
void setDisplayMode(const char* ModeName);
|
||||||
/// get the default display mode
|
/// get the default display mode
|
||||||
|
|
Loading…
Reference in New Issue
Block a user