Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
QHyodaToolCell.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7#ifndef Q_HYODA_JOB_TOOL_CELL_H
8#define Q_HYODA_JOB_TOOL_CELL_H
9
10#include <QtWidgets>
11#include <ui_hyodaCell.h>
12
13class QHyodaJob;
14class QHyodaTool;
15class QHyodaGLCell;
16
17class QHyodaToolCell: public QWidget, public Ui::toolCellWidget{
18 Q_OBJECT
19public:
22public:
23 void setRange(quint64);
24 void refresh(const QStringList &);
25 void close();
26public slots:
27 void targetCellUidLineEditSlot(void);
28 void targetCellUidSliderSlot(int value);
29public:
30 QHyodaJob *job;
31 QHyodaTool *tools;
32 QHyodaGLCell *cell;
33private:
34 double coords[8][3];
35};
36#endif // Q_HYODA_JOB_TOOL_CELL_H