Lines Matching defs:MediaNodePanel

32 // MediaNodePanel.cpp
35 #include "MediaNodePanel.h"
71 #define B_TRANSLATION_CONTEXT "MediaNodePanel"
88 float MediaNodePanel::M_DEFAULT_WIDTH = 90.0;
89 float MediaNodePanel::M_DEFAULT_HEIGHT = 60.0;
90 float MediaNodePanel::M_LABEL_H_MARGIN = 3.0;
91 float MediaNodePanel::M_LABEL_V_MARGIN = 3.0;
92 float MediaNodePanel::M_BODY_H_MARGIN = 5.0;
93 float MediaNodePanel::M_BODY_V_MARGIN = 5.0;
96 const BPoint MediaNodePanel::s_invalidPosition(-200.0, -200.0);
102 MediaNodePanel::MediaNodePanel(
112 D_METHOD(("MediaNodePanel::MediaNodePanel()\n"));
116 MediaNodePanel::~MediaNodePanel()
118 D_METHOD(("MediaNodePanel::~MediaNodePanel()\n"));
133 void MediaNodePanel::attachedToDiagram()
135 D_METHOD(("MediaNodePanel::attachedToDiagram()\n"));
146 void MediaNodePanel::detachedFromDiagram()
148 D_METHOD(("MediaNodePanel::detachedFromDiagram()\n"));
160 void MediaNodePanel::DrawBox()
162 D_DRAW(("MediaNodePanel::DrawBox()\n"));
169 void MediaNodePanel::MouseDown(
174 D_METHOD(("MediaNodePanel::MouseDown()\n"));
207 void MediaNodePanel::MouseOver(
211 D_METHOD(("MediaNodePanel::MouseOver()\n"));
246 void MediaNodePanel::MessageDropped(
250 D_METHOD(("MediaNodePanel::MessageDropped()\n"));
265 void MediaNodePanel::selected()
267 D_METHOD(("MediaNodePanel::selected()\n"));
271 void MediaNodePanel::deselected()
273 D_METHOD(("MediaNodePanel::deselected()\n"));
281 void MediaNodePanel::layoutChanged(
284 D_METHOD(("MediaNodePanel::layoutChanged()\n"));
307 void MediaNodePanel::populateInit()
309 D_METHOD(("MediaNodePanel::populateInit()\n"));
330 void MediaNodePanel::updateIOJacks()
332 D_METHOD(("MediaNodePanel::updateIOJacks()\n"));
373 void MediaNodePanel::arrangeIOJacks()
375 D_METHOD(("MediaNodePanel::arrangeIOJacks()\n"));
410 && (minHeight >= MediaNodePanel::M_DEFAULT_HEIGHT)))
500 && (minWidth >= MediaNodePanel::M_DEFAULT_WIDTH)))
561 void MediaNodePanel::showContextMenu(
564 D_METHOD(("MediaNodePanel::showContextMenu()\n"));
566 BPopUpMenu *menu = new BPopUpMenu("MediaNodePanel PopUp", false, false, B_ITEMS_IN_COLUMN);
695 void MediaNodePanel::MessageReceived(
698 D_METHOD(("MediaNodePanel::MessageReceived()\n"));
703 D_MESSAGE(("MediaNodePanel::MessageReceived(NodeRef::M_INPUTS_CHANGED)\n"));
709 D_MESSAGE(("MediaNodePanel::MessageReceived(NodeRef::M_OUTPUTS_CHANGED)\n"));
725 status_t MediaNodePanel::importState(
754 status_t MediaNodePanel::exportState(
804 void MediaNodePanel::_prepareLabel()
888 void MediaNodePanel::_updateBitmap()
914 void MediaNodePanel::_drawInto(
1030 void MediaNodePanel::_updateIcon(
1033 D_METHOD(("MediaNodePanel::_updateIcon()\n"));
1068 const MediaNodePanel *lPanel = *(reinterpret_cast<MediaNodePanel * const*>(reinterpret_cast<void * const*>(lValue)));
1069 const MediaNodePanel *rPanel = *(reinterpret_cast<MediaNodePanel * const*>(reinterpret_cast<void * const*>(rValue)));
1084 // END -- MediaNodePanel.cpp --