special case for the "open" icon. It will open a file selector and map the return file to the given command.
2904{
2905 if (aLabel == nullptr) return;
2906
2907 if (aCommand == nullptr) {
2908 if (std::string(aIconFile) == "user_icon") {
2909 return;
2910 }
2911 }
2912 QPixmap* pix;
2913 G4bool userToolBar =
false;
2914
2915 if (! fDefaultIcons) {
2916 userToolBar = true;
2917 }
2918 if (std::string(aIconFile) == "user_icon") {
2919
2921 pix =
new QPixmap(UImanager->
FindMacroPath(aFileName).data());
2922 if (pix->isNull()) {
2924
2925 if (verbose >= 2) {
2926 G4cout <<
"Warning: file '" << aFileName
2927 <<
"' is incorrect or does not exist, this command will not be build" <<
G4endl;
2928 }
2929 return;
2930 }
2931 }
2932 else if (std::string(aIconFile) == "open") {
2933 pix = fOpenIcon;
2934 }
2935 else if (std::string(aIconFile) == "save") {
2936 pix = fSaveIcon;
2937 }
2938 else if (std::string(aIconFile) == "move") {
2939 pix = fMoveIcon;
2940 }
2941 else if (std::string(aIconFile) == "rotate") {
2942 pix = fRotateIcon;
2943 }
2944 else if (std::string(aIconFile) == "pick") {
2945 pix = fPickIcon;
2946 }
2947 else if (std::string(aIconFile) == "zoom_in") {
2948 pix = fZoomInIcon;
2949 }
2950 else if (std::string(aIconFile) == "zoom_out") {
2951 pix = fZoomOutIcon;
2952 }
2953 else if (std::string(aIconFile) == "wireframe") {
2954 pix = fWireframeIcon;
2955 }
2956 else if (std::string(aIconFile) == "solid") {
2957 pix = fSolidIcon;
2958 }
2959 else if (std::string(aIconFile) == "hidden_line_removal") {
2960 pix = fHiddenLineRemovalIcon;
2961 }
2962 else if (std::string(aIconFile) == "hidden_line_and_surface_removal") {
2963 pix = fHiddenLineAndSurfaceRemovalIcon;
2964 }
2965 else if (std::string(aIconFile) == "perspective") {
2966 pix = fPerspectiveIcon;
2967 }
2968 else if (std::string(aIconFile) == "ortho") {
2969 pix = fOrthoIcon;
2970 }
2971 else if (std::string(aIconFile) == "runBeamOn") {
2972 pix = fRunIcon;
2973 }
2974 else if (std::string(aIconFile) == "exit") {
2975 pix = fExitIcon;
2976 }
2977 else {
2980
2981 if (verbose >= 2) {
2982 G4cout <<
"Parameter" << aIconFile <<
" not defined" <<
G4endl;
2983 }
2984 return;
2985 }
2986 QToolBar* currentToolbar = nullptr;
2987 if (userToolBar) {
2988 if (fToolbarUser == nullptr) {
2989 fToolbarUser = new QToolBar();
2990 fToolbarUser->setIconSize(QSize(20, 20));
2991 fMainWindow->addToolBar(Qt::TopToolBarArea, fToolbarUser);
2992 }
2993 currentToolbar = fToolbarUser;
2994 }
2995 else {
2996 if (fToolbarApp == nullptr) {
2997 fToolbarApp = new QToolBar();
2998 fToolbarApp->setIconSize(QSize(20, 20));
2999 fMainWindow->addToolBar(Qt::TopToolBarArea, fToolbarApp);
3000 }
3001 currentToolbar = fToolbarApp;
3002 }
3003
3004
3005
3006 QList<QAction*> list = currentToolbar->actions();
3007
3008 for (auto i : list) {
3009 if (i->text() == QString(aLabel)) {
3011 if (UI == nullptr) return;
3013 if (verbose >= 2) {
3014 G4cout <<
"Warning: A toolBar icon \"" << aLabel <<
"\" already exists with the same name!"
3016 }
3017 }
3018 }
3019
3020
3021 if (std::string(aIconFile) == "open") {
3022 QString txt = aCommand + fStringSeparator + aLabel;
3023 currentToolbar->addAction(
3024 QIcon(*pix), aIconFile, this, [this, txt]() { this->OpenIconCallback(txt); });
3025
3026
3027 }
3028 else if (std::string(aIconFile) == "save") {
3029 QString txt = aCommand + fStringSeparator + aLabel;
3030 currentToolbar->addAction(
3031 QIcon(*pix), aIconFile, this, [this, txt]() { this->SaveIconCallback(txt); });
3032
3033 }
3034 else if ((std::string(aIconFile) == "move") || (std::string(aIconFile) == "rotate") ||
3035 (std::string(aIconFile) == "pick") || (std::string(aIconFile) == "zoom_out") ||
3036 (std::string(aIconFile) == "zoom_in"))
3037 {
3038 QString txt = QString(aIconFile);
3039 QAction* action = currentToolbar->addAction(
3040 QIcon(*pix), aIconFile, this, [this, txt]() { this->ChangeCursorAction(txt); });
3041 action->setCheckable(true);
3042 action->setChecked(true);
3043 action->setData(aIconFile);
3044
3045 if (std::string(aIconFile) == "move") {
3047 }
3048 if (std::string(aIconFile) == "rotate") {
3050 }
3051 if (std::string(aIconFile) == "pick") {
3053 }
3054 if (std::string(aIconFile) == "zoom_in") {
3056 }
3057 if (std::string(aIconFile) == "zoom_out") {
3059 }
3060
3061
3062 }
3063 else if ((std::string(aIconFile) == "hidden_line_removal") ||
3064 (std::string(aIconFile) == "hidden_line_and_surface_removal") ||
3065 (std::string(aIconFile) == "solid") || (std::string(aIconFile) == "wireframe"))
3066 {
3067 QString txt = QString(aIconFile);
3068 QAction* action = currentToolbar->addAction(
3069 QIcon(*pix), aIconFile, this, [this, txt]() { this->ChangeSurfaceStyle(txt); });
3070 action->setCheckable(true);
3071 action->setChecked(true);
3072 action->setData(aIconFile);
3073
3074 if (std::string(aIconFile) == "hidden_line_removal") {
3076 }
3077 if (std::string(aIconFile) == "hidden_line_and_surface_removal") {
3079 }
3080 if (std::string(aIconFile) == "solid") {
3082 }
3083 if (std::string(aIconFile) == "wireframe") {
3085 }
3086
3087
3088 }
3089 else if ((std::string(aIconFile) == "perspective") || (std::string(aIconFile) == "ortho")) {
3090 QString txt = QString(aIconFile);
3091 QAction* action = currentToolbar->addAction(
3092 QIcon(*pix), aIconFile, this, [this, txt]() { this->ChangePerspectiveOrtho(txt); });
3093 action->setCheckable(true);
3094 action->setChecked(true);
3095 action->setData(aIconFile);
3096
3097 if (std::string(aIconFile) == "perspective") {
3099 }
3100 if (std::string(aIconFile) == "ortho") {
3102 }
3103 }
3104 else {
3105
3107 if (UI == nullptr) return;
3108 G4UIcommandTree* treeTop = UI->
GetTree();
3109 if (aCommand != nullptr) {
3110 std::string str = aCommand;
3111 std::string::size_type
pos = str.find(
' ');
3112 if (pos != std::string::npos) {
3113 str = str.substr(0, pos).c_str();
3114 }
3115 if (treeTop->
FindPath(str.c_str()) ==
nullptr) {
3118
3119 if (verbose >= 2) {
3120 G4cout <<
"Warning: command '" << aCommand
3121 <<
"' does not exist, please define it before using it." <<
G4endl;
3122 }
3123 }
3124 }
3125 QString txt = QString(aCommand);
3126 currentToolbar->addAction(
3127 QIcon(*pix), aCommand, this, [this, txt]() { this->ButtonCallback(txt); });
3128 }
3129}
void SetIconPickSelected()
void SetIconOrthoSelected()
void SetIconZoomInSelected()
void SetIconZoomOutSelected()
void SetIconHLRSelected()
void SetIconPerspectiveSelected()
void SetIconSolidSelected()
void SetIconRotateSelected()
void SetIconWireframeSelected()
void SetIconMoveSelected()
void SetIconHLHSRSelected()
G4String FindMacroPath(const G4String &fname) const