Merge pull request #5082 from pavltom/Balloon_Updates

TechDraw - Balloon handling updates
This commit is contained in:
Chris Hennes
2021-10-09 13:28:48 -05:00
committed by GitHub
13 changed files with 245 additions and 56 deletions

View File

@@ -100,7 +100,6 @@ DrawPage::DrawPage(void)
"Auto-numbering for Balloons");
Scale.setConstraints(&scaleRange);
balloonPlacing = false;
balloonParent = nullptr;
}

View File

@@ -94,7 +94,6 @@ public:
bool isUnsetting(void) { return nowUnsetting; }
void requestPaint(void);
std::vector<App::DocumentObject*> getAllViews(void) ;
bool balloonPlacing;
DrawViewPart *balloonParent; //could be many balloons on page?
int getNextBalloonIndex(void);

View File

@@ -87,6 +87,7 @@ const char* DrawViewBalloon::balloonTypeEnums[]= {"Circular",
"Hexagon",
"Square",
"Rectangle",
"Line",
NULL};
DrawViewBalloon::DrawViewBalloon(void)