Changeset 48eab8
- Timestamp:
- Jun 19, 2017, 8:24:16 AM (8 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_SelectAtomByNameAction, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_StructOpt_integration_tests, AutomationFragmentation_failures, Candidate_v1.6.1, ChangeBugEmailaddress, ChemicalSpaceEvaluator, EmpiricalPotential_contain_HomologyGraph_documentation, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, Fix_Verbose_Codepatterns, ForceAnnealing_oldresults, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, GeometryObjects, Gui_displays_atomic_force_velocity, IndependentFragmentGrids_IntegrationTest, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, StoppableMakroAction, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps
- Children:
- 97c364
- Parents:
- d8c6c7
- git-author:
- Frederik Heber <heber@…> (03/25/17 13:59:40)
- git-committer:
- Frederik Heber <frederik.heber@…> (06/19/17 08:24:16)
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/userguide/userguide.xml
rd8c6c7 r48eab8 1 <?xml version='1.0' encoding='UTF-8'?>1 <?xml version='1.0' encoding='UTF-8'?> 2 2 <!-- This document was created with Syntext Serna Free. --><!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ 3 3 <!ENTITY molecuilder_logo SYSTEM "pictures/molecuilder_logo.png" NDATA PNG> … … 2374 2374 <para>Underneath the time line there is another place for 2375 2375 tabs.</para> 2376 <itemizedlist> 2377 <listitem>Molecules</listitem> 2378 <listitem>All Elements</listitem> 2379 <listitem>All Fragments</listitem> 2380 <listitem>All Homologies</listitem> 2381 <listitem>All Geometries</listitem> 2382 <listitem>Logs</listitem> 2383 <listitem>Errors</listitem> 2384 </itemizedlist> 2376 2385 <para>The first is on molecules, listing all present molecules of 2377 2386 the molecular system in a tree view. If you click on a specific … … 2383 2392 system. Clicking on a present element will select all atoms of this 2384 2393 specific element. A subsequent click unselects again.</para> 2385 <para>Subsequently follow t abs on enumerating the fragments and their2394 <para>Subsequently follow two tabs on enumerating the fragments and their 2386 2395 fragment energies if calculated and the homologies along with 2387 2396 graphical depiction (via QWT), again if present.</para> 2397 <para>After that, we have a tab listing all geometry objects. These 2398 are vectors you may store via one of the Actions. If you hover over 2399 a vector, its length is shown. If you have selected one vector and 2400 hover over another one, then the angle between the two is shown. 2401 </para> 2402 <para>Finally, there are two tabs showing log messages of actions 2403 in the first tab and general information on what is currently done. Errors and 2404 warnings are listed in the second tab.</para> 2388 2405 </section> 2389 2406 </section> -
src/UIElements/Makefile.am
rd8c6c7 r48eab8 190 190 UIElements/Menu/Qt4/QtMenuPipe.cpp \ 191 191 UIElements/Views/Qt4/QtFragmentList.cpp \ 192 UIElements/Views/Qt4/QtGeometryList.cpp \ 192 193 UIElements/Views/Qt4/QtHomologyList.cpp \ 193 194 UIElements/Views/Qt4/QtInfoBox.cpp \ … … 225 226 UIElements/Views/Qt4/MoleculeList/QtObservedMoleculeObserver.hpp \ 226 227 UIElements/Views/Qt4/QtFragmentList.hpp \ 228 UIElements/Views/Qt4/QtGeometryList.hpp \ 227 229 UIElements/Views/Qt4/QtHomologyList.hpp \ 228 230 UIElements/Views/Qt4/QtInfoBox.hpp \ -
src/UIElements/Qt4/QtMainWindow.cpp
rd8c6c7 r48eab8 59 59 #include "Views/Qt4/QtHomologyList.hpp" 60 60 #include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp" 61 #include "Views/Qt4/QtGeometryList.hpp" 61 62 #include "Views/Qt4/QtLogBox.hpp" 62 63 #include "Views/Qt4/QtShapeController.hpp" … … 112 113 homologyList = new QtHomologyList(worldTab); 113 114 fragmentList = new QtFragmentList(worldTab); 115 geometryList = new QtGeometryList(worldTab); 114 116 logBox = new QtLogBox(std::cout, worldTab); 115 117 errorlogBox = new QtLogBox(std::cerr, worldTab); … … 147 149 worldTab->addTab(fragmentList, "All Fragments"); 148 150 worldTab->addTab(homologyList, "All Homologies"); 151 worldTab->addTab(geometryList, "All Geometries"); 149 152 worldTab->addTab(logBox, "Log"); 150 153 worldTab->addTab(errorlogBox, "Errors"); -
src/UIElements/Qt4/QtMainWindow.hpp
rd8c6c7 r48eab8 27 27 class QtElementList; 28 28 class QtFragmentList; 29 class QtGeometryList; 29 30 class QtHomologyList; 30 31 class QtLogBox; … … 60 61 QtMoleculeList *moleculeList; 61 62 QtElementList *elementList; 63 QtGeometryList *geometryList; 62 64 QtHomologyList *homologyList; 63 65 QtFragmentList *fragmentList;
Note:
See TracChangeset
for help on using the changeset viewer.