File: model.h

package info (click to toggle)
bornagain 1.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 118,800 kB
  • sloc: cpp: 469,684; python: 38,920; xml: 805; awk: 630; sh: 286; ansic: 37; makefile: 25
file content (68 lines) | stat: -rw-r--r-- 1,817 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// ************************************************************************** //
//
//  BornAgain: simulate and fit scattering at grazing incidence
//
//! @file      GUI/ba3d/model/model.h
//! @brief     Defines Model class
//!
//! @homepage  http://www.bornagainproject.org
//! @license   GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors   Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************** //

#ifndef BORNAGAIN_GUI_BA3D_MODEL_MODEL_H
#define BORNAGAIN_GUI_BA3D_MODEL_MODEL_H

#include "GUI/ba3d/model/particles.h"
#include "GUI/ba3d/view/camera.h"
#include <QVector>

namespace RealSpace
{
//------------------------------------------------------------------------------

class Canvas;
class Object;

class Model : public QObject
{
    Q_OBJECT
    friend class Canvas;
    friend class Camera;
    friend class Object;

public:
    Model();
    virtual ~Model();

    void clearOpaque();
    void clearBlend();

    static Particles::Particle* newParticle(Particles::EShape k, float R);

    void add(Object*);      // add an opaque object, the model takes ownership
    void addBlend(Object*); // add a transparent object, the model takes ownership
    void rem(Object*);      // removes an object, the caller becomes responsible

    void releaseGeometries(); // may be called any time

    bool modelIsEmpty();

    virtual void cameraUpdated(Camera const&) {}

    Camera::Position defCamPos; // default camera params

signals:
    void updated(bool withEye);

private:
    QVector<Object*> objects, objectsBlend;

    void draw(Canvas&) const;
    void drawBlend(Canvas&) const;
};

} // namespace RealSpace
#endif // BORNAGAIN_GUI_BA3D_MODEL_MODEL_H