Files
ardour/libs/pbd/pbd/glib_event_source.h
Robin Gareus 74c4ca3e52 Reduce reliance on boost - the hard part
the rest from `tools/convert_boost.sh`.

* replace boost::function, boost::bind with std::function and std::bind.

This required some manual fixes, notably std::placeholders,
some static_casts<>, and boost::function::clear -> = {}.
2024-10-19 03:47:21 +02:00

48 lines
1.3 KiB
C++

/*
* Copyright (C) 2022 Paul Davis <paul@linuxaudiosystems.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
#include <glib.h>
#include <glibmm/main.h>
#include "pbd/libpbd_visibility.h"
class LIBPBD_API GlibEventLoopCallback
{
public:
GlibEventLoopCallback (std::function<void()> callback);
~GlibEventLoopCallback();
static gboolean c_prepare (GSource*, gint* timeout);
void attach (Glib::RefPtr<Glib::MainContext>);
private:
struct GSourceWithParent {
GSource c;
GlibEventLoopCallback* cpp;
};
bool cpp_prepare();
GSourceWithParent* gsource;
GSourceFuncs funcs;
std::function<void()> _callback;
};