Files
create/src/Gui/OriginManagerDialog.h
forbes-0023 db85277f26
Some checks failed
Build and Test / build (push) Has been cancelled
feat(gui): add OriginManagerDialog for managing file origins (#15)
- Create OriginManagerDialog with list of configured origins
- Show connection status for remote origins
- Allow setting default origin
- Add/Edit/Remove buttons (Add/Edit show placeholder for now)
- Wire up 'Manage Origins...' button in OriginSelectorWidget
- Prevent removal of built-in local origin

Part of Issue #15: Multi-instance Silo configuration UI
2026-02-05 14:51:30 -06:00

75 lines
2.7 KiB
C++

/***************************************************************************
* Copyright (c) 2025 Kindred Systems *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#ifndef GUI_ORIGINMANAGERDIALOG_H
#define GUI_ORIGINMANAGERDIALOG_H
#include <QDialog>
#include <QListWidget>
#include <QPushButton>
#include <QDialogButtonBox>
#include <FCGlobal.h>
namespace Gui {
class FileOrigin;
/**
* @brief Dialog for managing file origins
*
* This dialog allows users to view, add, edit, and remove file origins
* (Silo instances). The local filesystem origin cannot be removed.
*/
class GuiExport OriginManagerDialog : public QDialog
{
Q_OBJECT
public:
explicit OriginManagerDialog(QWidget* parent = nullptr);
~OriginManagerDialog() override;
private Q_SLOTS:
void onAddSilo();
void onEditOrigin();
void onRemoveOrigin();
void onSetDefault();
void onOriginSelectionChanged();
void onOriginDoubleClicked(QListWidgetItem* item);
private:
void setupUi();
void populateOriginList();
void updateButtonStates();
FileOrigin* selectedOrigin() const;
QListWidget* m_originList;
QPushButton* m_addButton;
QPushButton* m_editButton;
QPushButton* m_removeButton;
QPushButton* m_defaultButton;
QDialogButtonBox* m_buttonBox;
};
} // namespace Gui
#endif // GUI_ORIGINMANAGERDIALOG_H