HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MSS_BrushHairLen.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2024
3  * Side Effects Software Inc. All rights reserved.
4  *
5  * Redistribution and use of Houdini Development Kit samples in source and
6  * binary forms, with or without modification, are permitted provided that the
7  * following conditions are met:
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  * 2. The name of Side Effects Software may not be used to endorse or
11  * promote products derived from this software without specific prior
12  * written permission.
13  *
14  * THIS SOFTWARE IS PROVIDED BY SIDE EFFECTS SOFTWARE `AS IS' AND ANY EXPRESS
15  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
17  * NO EVENT SHALL SIDE EFFECTS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
19  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
20  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
21  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
22  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
23  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  *----------------------------------------------------------------------------
26  */
27 
28 #ifndef __MSS_BrushHairLen__
29 #define __MSS_BrushHairLen__
30 
31 namespace HDK_Sample {
33 {
34 public:
35  MSS_BrushHairLen(JEDI_View &view, PI_StateTemplate &templ,
36  BM_SceneManager *scene,
37  const char *cursor = BM_DEFAULT_CURSOR);
38  ~MSS_BrushHairLen() override;
39 
40  /// This constructor and parameter template list go into the
41  /// DM_StateTemplate for this state.
42  static BM_State *ourConstructor(BM_View &view, PI_StateTemplate &templ,
43  BM_SceneManager *scene);
45 
46  /// The name and type of this class:
47  const char *className() const override;
48 
49  /// This method is used to get the name of the UI file.
50  /// Normally it is prefixed by the UI directory, but as that varies
51  /// from build to build, we hard code it.
52  void getUIFileName(UT_String &uifilename) const override;
53 
54 protected:
55  /// Respond to keyboard events.
57  int key, UI_Event *event,
58  BM_Viewport &) override;
59 
60  /// Convert an op menu entry to a brush operation:
62  const UI_Value &menuvalue) const override;
63 
66 };
67 } // End HDK_Sample namespace
68 
69 #endif
70 
void getUIFileName(UT_String &uifilename) const override
struct _cl_event * event
Definition: glcorearb.h:2961
const char * className() const override
The name and type of this class:
#define BM_DEFAULT_CURSOR
Definition: BM_OpState.h:38
MSS_BrushHairLen(JEDI_View &view, PI_StateTemplate &templ, BM_SceneManager *scene, const char *cursor=BM_DEFAULT_CURSOR)
static PRM_ChoiceList theLMBMenu
SOP_BrushOp
Definition: SOP_BrushBase.h:39
static PRM_Template ourTemplateList[]
SOP_BrushOp menuToBrushOp(const UI_Value &menuvalue) const override
Convert an op menu entry to a brush operation:
Definition: core.h:982
static PRM_ChoiceList theMMBMenu
static BM_State * ourConstructor(BM_View &view, PI_StateTemplate &templ, BM_SceneManager *scene)
int handleKeyTypeEvent(int key, UI_Event *event, BM_Viewport &) override
Respond to keyboard events.