summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-10-31 17:51:32 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-10-31 17:51:32 +0100
commit8b603b9f1bd1f1e26570d1dc542d1eb28b00eded (patch)
treed99f85aeab01da50789ff79bba163a65cb25c1a6 /src
parent0e41ca820de73f01dabe101ecc2fce5d8dcd4abd (diff)
Move private classes to the DriverDeveloper Doxygen group
Classes moved are -Fl_Int_Vector -Fl_Kdialog_Native_File_Chooser_Driver -Fl_Zenity_Native_File_Chooser_Driver
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Int_Vector.H11
-rw-r--r--src/Fl_Int_Vector.cxx11
-rw-r--r--src/Fl_Native_File_Chooser_Kdialog.H11
-rw-r--r--src/Fl_Native_File_Chooser_Kdialog.cxx11
-rw-r--r--src/Fl_Native_File_Chooser_Zenity.H11
-rw-r--r--src/Fl_Native_File_Chooser_Zenity.cxx11
6 files changed, 66 insertions, 0 deletions
diff --git a/src/Fl_Int_Vector.H b/src/Fl_Int_Vector.H
index 6d89f596e..e80da04e3 100644
--- a/src/Fl_Int_Vector.H
+++ b/src/Fl_Int_Vector.H
@@ -18,6 +18,12 @@
#ifndef Fl_Int_Vector_H
#define Fl_Int_Vector_H
+/**
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
+ */
+
#include <FL/Fl_Export.H>
/** \file src/Fl_Int_Vector.H
@@ -165,4 +171,9 @@ public:
}
};
+/**
+\}
+\endcond
+*/
+
#endif // Fl_Int_Vector_H
diff --git a/src/Fl_Int_Vector.cxx b/src/Fl_Int_Vector.cxx
index bbbf149dd..523e4a3c8 100644
--- a/src/Fl_Int_Vector.cxx
+++ b/src/Fl_Int_Vector.cxx
@@ -15,6 +15,12 @@
// https://www.fltk.org/bugs.php
//
+/**
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
+ */
+
#include "Fl_Int_Vector.H"
#include <stdlib.h>
#include <string.h>
@@ -60,3 +66,8 @@ void Fl_Int_Vector::size(unsigned int count) {
// count <= size_? just truncate
size_ = count;
}
+
+/**
+\}
+\endcond
+*/
diff --git a/src/Fl_Native_File_Chooser_Kdialog.H b/src/Fl_Native_File_Chooser_Kdialog.H
index fd423a8c6..f65445fb3 100644
--- a/src/Fl_Native_File_Chooser_Kdialog.H
+++ b/src/Fl_Native_File_Chooser_Kdialog.H
@@ -17,6 +17,12 @@
#ifndef FL_KDIALOG_NATIVE_FILE_CHOOSER_H
#define FL_KDIALOG_NATIVE_FILE_CHOOSER_H 1
+/**
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
+ */
+
#include <FL/Fl_Native_File_Chooser.H>
class Fl_Kdialog_Native_File_Chooser_Driver : public Fl_Native_File_Chooser_FLTK_Driver {
@@ -53,4 +59,9 @@ class Fl_Kdialog_Native_File_Chooser_Driver : public Fl_Native_File_Chooser_FLTK
const char *title() const FL_OVERRIDE;
};
+/**
+\}
+\endcond
+*/
+
#endif // FL_KDIALOG_NATIVE_FILE_CHOOSER_H
diff --git a/src/Fl_Native_File_Chooser_Kdialog.cxx b/src/Fl_Native_File_Chooser_Kdialog.cxx
index cab64b217..72bb6ce18 100644
--- a/src/Fl_Native_File_Chooser_Kdialog.cxx
+++ b/src/Fl_Native_File_Chooser_Kdialog.cxx
@@ -14,6 +14,12 @@
// https://www.fltk.org/bugs.php
//
+/**
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
+ */
+
#include <config.h>
#include <FL/Fl_Native_File_Chooser.H>
#include "Fl_Native_File_Chooser_Kdialog.H"
@@ -291,3 +297,8 @@ void Fl_Kdialog_Native_File_Chooser_Driver::title(const char *val)
const char *Fl_Kdialog_Native_File_Chooser_Driver::title() const {
return _title;
}
+
+/**
+\}
+\endcond
+*/
diff --git a/src/Fl_Native_File_Chooser_Zenity.H b/src/Fl_Native_File_Chooser_Zenity.H
index 269d2f9cd..56b12ed29 100644
--- a/src/Fl_Native_File_Chooser_Zenity.H
+++ b/src/Fl_Native_File_Chooser_Zenity.H
@@ -17,6 +17,12 @@
#ifndef FL_ZENITY_NATIVE_FILE_CHOOSER_H
#define FL_ZENITY_NATIVE_FILE_CHOOSER_H 1
+/**
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
+ */
+
#include "Fl_Native_File_Chooser_Kdialog.H"
class Fl_Zenity_Native_File_Chooser_Driver : public Fl_Kdialog_Native_File_Chooser_Driver {
@@ -27,4 +33,9 @@ class Fl_Zenity_Native_File_Chooser_Driver : public Fl_Kdialog_Native_File_Choos
char *build_command() FL_OVERRIDE;
};
+/**
+\}
+\endcond
+*/
+
#endif // FL_ZENITY_NATIVE_FILE_CHOOSER_H
diff --git a/src/Fl_Native_File_Chooser_Zenity.cxx b/src/Fl_Native_File_Chooser_Zenity.cxx
index 3626d357e..aa967bfb0 100644
--- a/src/Fl_Native_File_Chooser_Zenity.cxx
+++ b/src/Fl_Native_File_Chooser_Zenity.cxx
@@ -14,6 +14,12 @@
// https://www.fltk.org/bugs.php
//
+/**
+ \cond DriverDev
+ \addtogroup DriverDeveloper
+ \{
+ */
+
#include <config.h>
#include "Fl_Native_File_Chooser_Zenity.H"
#include <stdio.h>
@@ -112,3 +118,8 @@ char *Fl_Zenity_Native_File_Chooser_Driver::build_command() {
//puts(command);
return command;
}
+
+/**
+\}
+\endcond
+*/