src/gui_actions.cpp

changeset 538
2f85d4d286e5
parent 530
f9476dbd87ec
child 539
72ad83a67165
--- a/src/gui_actions.cpp	Tue Oct 22 22:14:32 2013 +0300
+++ b/src/gui_actions.cpp	Thu Dec 05 13:51:52 2013 +0200
@@ -101,7 +101,7 @@
 		new LDEmpty,
 	});
 
-	g_win->fullRefresh();
+	g_win->doFullRefresh();
 }
 
 // =============================================================================
@@ -147,7 +147,7 @@
 // =============================================================================
 // -----------------------------------------------------------------------------
 DEFINE_ACTION (Close, CTRL (W))
-{	if (!LDFile::current()->safeToClose())
+{	if (!LDFile::current()->isSafeToClose())
 		return;
 
 	delete LDFile::current();
@@ -268,7 +268,7 @@
 // =============================================================================
 // -----------------------------------------------------------------------------
 DEFINE_ACTION (SelectByColor, CTRL_SHIFT (A))
-{	short colnum = g_win->getSelectedColor();
+{	int colnum = g_win->getSelectedColor();
 
 	if (colnum == -1)
 		return; // no consensus on color
@@ -288,7 +288,7 @@
 {	if (selection().isEmpty())
 		return;
 
-	LDObject::Type type = g_win->uniformSelectedType();
+	LDObject::Type type = g_win->getUniformSelectedType();
 
 	if (type == LDObject::Unidentified)
 		return;
@@ -443,7 +443,7 @@
 {	setlocale (LC_ALL, "C");
 
 	int w, h;
-	uchar* imgdata = g_win->R()->screencap (w, h);
+	uchar* imgdata = g_win->R()->getScreencap (w, h);
 	QImage img = imageFromScreencap (imgdata, w, h);
 
 	str root = basename (LDFile::current()->name());
@@ -548,8 +548,8 @@
 
 	bool ok;
 	double depth = QInputDialog::getDouble (g_win, "Set Draw Depth",
-											fmt ("Depth value for %1 Camera:", g_win->R()->cameraName()),
-											g_win->R()->depthValue(), -10000.0f, 10000.0f, 3, &ok);
+											fmt ("Depth value for %1 Camera:", g_win->R()->getCameraName()),
+											g_win->R()->getDepthValue(), -10000.0f, 10000.0f, 3, &ok);
 
 	if (ok)
 		g_win->R()->setDepthValue (depth);
@@ -625,9 +625,9 @@
 		defval = selection()[0]->getIndex();
 
 	int idx = QInputDialog::getInt (null, "Go to line", "Go to line:", defval,
-		1, LDFile::current()->numObjs(), 1, &ok);
+		1, LDFile::current()->getObjectCount(), 1, &ok);
 
-	if (!ok || (obj = LDFile::current()->object (idx - 1)) == null)
+	if (!ok || (obj = LDFile::current()->getObject (idx - 1)) == null)
 		return;
 
 	LDFile::current()->clearSelection();

mercurial