2014-04-18 19:02:08 +02:00
|
|
|
// Copyright (c) 2014, Thomas Goyne <plorkyeran@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
2015-01-18 23:56:48 +01:00
|
|
|
#include "flyweight_hash.h"
|
|
|
|
|
2014-04-18 19:02:08 +02:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
class AssDialogue;
|
2014-04-23 22:53:24 +02:00
|
|
|
class wxDC;
|
2014-04-18 19:02:08 +02:00
|
|
|
class wxString;
|
|
|
|
namespace agi { struct Context; }
|
|
|
|
|
2015-01-18 23:56:48 +01:00
|
|
|
class WidthHelper {
|
|
|
|
struct Entry {
|
|
|
|
int width;
|
|
|
|
int age;
|
2014-04-18 19:02:08 +02:00
|
|
|
};
|
2015-01-18 23:56:48 +01:00
|
|
|
int age = 0;
|
|
|
|
wxDC *dc = nullptr;
|
|
|
|
std::unordered_map<boost::flyweight<std::string>, Entry> widths;
|
|
|
|
#ifdef _WIN32
|
2015-02-02 05:01:55 +01:00
|
|
|
wxString scratch;
|
2015-01-18 23:56:48 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
|
|
|
void SetDC(wxDC *dc) { this->dc = dc; }
|
|
|
|
void Age();
|
2014-04-18 19:02:08 +02:00
|
|
|
|
|
|
|
int operator()(boost::flyweight<std::string> const& str);
|
|
|
|
int operator()(std::string const& str);
|
|
|
|
int operator()(wxString const& str);
|
2014-05-30 18:09:49 +02:00
|
|
|
int operator()(const char *str);
|
|
|
|
int operator()(const wchar_t *str);
|
2014-04-18 19:02:08 +02:00
|
|
|
};
|
|
|
|
|
2014-04-21 16:50:19 +02:00
|
|
|
class GridColumn {
|
|
|
|
protected:
|
|
|
|
int width = 0;
|
|
|
|
bool visible = true;
|
|
|
|
|
|
|
|
virtual int Width(const agi::Context *c, WidthHelper &helper) const = 0;
|
|
|
|
virtual wxString Value(const AssDialogue *d, const agi::Context *c) const = 0;
|
|
|
|
|
|
|
|
public:
|
2014-04-18 19:02:08 +02:00
|
|
|
virtual ~GridColumn() = default;
|
|
|
|
|
2014-04-21 16:50:19 +02:00
|
|
|
virtual bool Centered() const { return false; }
|
2014-04-18 19:02:08 +02:00
|
|
|
virtual bool CanHide() const { return true; }
|
|
|
|
virtual bool RefreshOnTextChange() const { return false; }
|
|
|
|
|
|
|
|
virtual wxString const& Header() const = 0;
|
|
|
|
virtual wxString const& Description() const = 0;
|
2014-04-21 16:50:19 +02:00
|
|
|
virtual void Paint(wxDC &dc, int x, int y, const AssDialogue *d, const agi::Context *c) const;
|
2014-04-18 19:02:08 +02:00
|
|
|
|
2014-04-21 16:50:19 +02:00
|
|
|
int Width() const { return width; }
|
|
|
|
bool Visible() const { return visible; }
|
2014-04-19 15:57:17 +02:00
|
|
|
|
2014-04-21 16:50:19 +02:00
|
|
|
virtual void UpdateWidth(const agi::Context *c, WidthHelper &helper);
|
2014-04-19 15:57:17 +02:00
|
|
|
virtual void SetByFrame(bool /* by_frame */) { }
|
2014-04-21 16:50:19 +02:00
|
|
|
void SetVisible(bool new_value) { visible = new_value; }
|
2014-04-18 19:02:08 +02:00
|
|
|
};
|
|
|
|
|
2014-04-23 22:53:24 +02:00
|
|
|
std::vector<std::unique_ptr<GridColumn>> GetGridColumns();
|