34 lines
682 B
C
34 lines
682 B
C
/****************************************************************************
|
|
* This file is part of the project AqDiagram.
|
|
* AqDiagram (c) by 2025 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
#ifndef AQDG_GRAPH_W_LEGEND_H
|
|
#define AQDG_GRAPH_W_LEGEND_H
|
|
|
|
#include <aqdiagram/graph/w_graph.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
|
|
AQDG_API AQDG_OBJECT *AQDG_LegendWidget_new(AQDG_OBJECT *parent, uint32_t options, AQDG_OBJECT *graphWidget);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|