Plugins
Loading...
Searching...
No Matches
tooltips.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2014-2015: G-CSC, Goethe University Frankfurt
3 * Author: Sebastian Reiter, Anahita Werner, Markus Knodel some adds
4 *
5 * This file is part of UG4.
6 *
7 * UG4 is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License version 3 (as published by the
9 * Free Software Foundation) with the following additional attribution
10 * requirements (according to LGPL/GPL v3 §7):
11 *
12 * (1) The following notice must be displayed in the Appropriate Legal Notices
13 * of covered and combined works: "Based on UG4 (www.ug4.org/license)".
14 *
15 * (2) The following notice must be displayed at a prominent place in the
16 * terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
17 *
18 * (3) The following bibliography is recommended for citation and must be
19 * preserved in all covered files:
20 * "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
21 * parallel geometric multigrid solver on hierarchically distributed grids.
22 * Computing and visualization in science 16, 4 (2013), 151-164"
23 * "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
24 * flexible software system for simulating pde based models on high performance
25 * computers. Computing and visualization in science 16, 4 (2013), 165-179"
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU Lesser General Public License for more details.
31 */
32
33
34#ifndef __H__PROMESH_TOOLTIPS
35#define __H__PROMESH_TOOLTIPS
36
37// camera tools
38#define TOOLTIP_CENTER_OBJECT "Centers the current object."
39#define TOOLTIP_SLIDER_TEST "Tests the DoubleSlider."
40#define TOOLTIP_CENTER_SELECTION "Centers the current selection."
41#define TOOLTIP_TOP_VIEW "View the current scene from the top."
42#define TOOLTIP_FRONT_VIEW "View the current scene from the front."
43#define TOOLTIP_SIDE_VIEW "View the current scene from the side."
44#define TOOLTIP_HIDE_SELECTED_ELEMENTS "Hides all currently selected elements."
45#define TOOLTIP_UNHIDE_ELEMENTS "Unhides all hidden elements."
46
47
48//info tools
49#define TOOLTIP_PRINT_SELECTION_CENTER "Calculates and prints the position of the center of the current selection."
50#define TOOLTIP_PRINT_GEOMETRY_INFO "Prints info about the current geometry"
51#define TOOLTIP_PRINT_FACE_QUALITY "Prints the quality of selected faces"
52#define TOOLTIP_PRINT_SELECTION_INFO "Prints the quantities of selected elements"
53#define TOOLTIP_PRINT_SELECTION_CONTAINING_SUBSETS "Prints subset indices of all subsets, which contain a selected element."
54#define TOOLTIP_PRINT_VERTEX_DISTANCE "Prints the min and max distance of vertices of selected elements."
55#define TOOLTIP_PRINT_LEAST_SQUARES_PLANE "Prints the position and normal of the least squares fitting plane"
56
57
58//fracture tools
59#define TOOLTIP_EXPAND_LAYERS_2D "Expands a 1d layer to a 2d layer by introducing quadrilaterals."
60#define TOOLTIP_EXPAND_LAYERS_2D_ARTE "Expands a 1d layer to a 2d layer by introducing quadrilaterals, using the Arte algorithm."
61#define TOOLTIP_EXPAND_LAYERS_3D "Expands a 2d layer to a 3d layer by introducing prisms."
62#define TOOLTIP_EXPAND_LAYERS_3D_ARTE "Expands a 2d layer to a 3d layer by introducing prisms, using the Arte algorithm."
63#define TOOLTIP_FRAC_TO_LAYER "Enhances a 2d fracture to a 3d fracture."
64
65//new tools
66#define TOOLTIP_GET_BOUNDING_BOX "Returns the bounding box of the specified mesh."
67
68// all changes should go above the endif statement
69#endif