Changeset 48eab8


Ignore:
Timestamp:
Jun 19, 2017, 8:24:16 AM (8 years ago)
Author:
Frederik Heber <frederik.heber@…>
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)
Message:

Added QtGeometryList to QtMainWindow.

  • this list shows the name and vectors of all GeometryObjects in the Registry.
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'?>
    22<!-- 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" [
    33<!ENTITY molecuilder_logo SYSTEM "pictures/molecuilder_logo.png" NDATA PNG>
     
    23742374          <para>Underneath the time line there is another place for
    23752375          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>
    23762385          <para>The first is on molecules, listing all present molecules of
    23772386          the molecular system in a tree view. If you click on a specific
     
    23832392          system. Clicking on a present element will select all atoms of this
    23842393          specific element. A subsequent click unselects again.</para>
    2385           <para>Subsequently follow tabs on enumerating the fragments and their
     2394          <para>Subsequently follow two tabs on enumerating the fragments and their
    23862395          fragment energies if calculated and the homologies along with
    23872396          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>
    23882405        </section>
    23892406      </section>
  • src/UIElements/Makefile.am

    rd8c6c7 r48eab8  
    190190  UIElements/Menu/Qt4/QtMenuPipe.cpp \
    191191  UIElements/Views/Qt4/QtFragmentList.cpp \
     192  UIElements/Views/Qt4/QtGeometryList.cpp \
    192193  UIElements/Views/Qt4/QtHomologyList.cpp \
    193194  UIElements/Views/Qt4/QtInfoBox.cpp \
     
    225226  UIElements/Views/Qt4/MoleculeList/QtObservedMoleculeObserver.hpp \
    226227  UIElements/Views/Qt4/QtFragmentList.hpp \
     228  UIElements/Views/Qt4/QtGeometryList.hpp \
    227229  UIElements/Views/Qt4/QtHomologyList.hpp \
    228230  UIElements/Views/Qt4/QtInfoBox.hpp \
  • src/UIElements/Qt4/QtMainWindow.cpp

    rd8c6c7 r48eab8  
    5959#include "Views/Qt4/QtHomologyList.hpp"
    6060#include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
     61#include "Views/Qt4/QtGeometryList.hpp"
    6162#include "Views/Qt4/QtLogBox.hpp"
    6263#include "Views/Qt4/QtShapeController.hpp"
     
    112113  homologyList = new QtHomologyList(worldTab);
    113114  fragmentList = new QtFragmentList(worldTab);
     115  geometryList = new QtGeometryList(worldTab);
    114116  logBox = new QtLogBox(std::cout, worldTab);
    115117  errorlogBox = new QtLogBox(std::cerr, worldTab);
     
    147149  worldTab->addTab(fragmentList, "All Fragments");
    148150  worldTab->addTab(homologyList, "All Homologies");
     151  worldTab->addTab(geometryList, "All Geometries");
    149152  worldTab->addTab(logBox, "Log");
    150153  worldTab->addTab(errorlogBox, "Errors");
  • src/UIElements/Qt4/QtMainWindow.hpp

    rd8c6c7 r48eab8  
    2727class QtElementList;
    2828class QtFragmentList;
     29class QtGeometryList;
    2930class QtHomologyList;
    3031class QtLogBox;
     
    6061  QtMoleculeList *moleculeList;
    6162  QtElementList *elementList;
     63  QtGeometryList *geometryList;
    6264  QtHomologyList *homologyList;
    6365  QtFragmentList *fragmentList;
Note: See TracChangeset for help on using the changeset viewer.