Tentative avec un fork de finalcut
This commit is contained in:
parent
e51bf45b53
commit
98db70cd7f
|
@ -12,7 +12,7 @@ RUN apk --no-cache add bash util-linux coreutils curl make cmake gcc g++ libstdc
|
||||||
git sed tar wget gzip indent binutils hexdump dos2unix xxd autoconf automake autoconf-archive\
|
git sed tar wget gzip indent binutils hexdump dos2unix xxd autoconf automake autoconf-archive\
|
||||||
libtool linux-headers ncurses-dev
|
libtool linux-headers ncurses-dev
|
||||||
WORKDIR /usr/src/
|
WORKDIR /usr/src/
|
||||||
RUN git clone git://github.com/gansm/finalcut.git
|
RUN git clone https://github.com/dahut87/finalcut.git
|
||||||
WORKDIR /usr/src/finalcut
|
WORKDIR /usr/src/finalcut
|
||||||
RUN autoreconf --install --force && ./configure --prefix=/usr && make && make install
|
RUN autoreconf --install --force && ./configure --prefix=/usr && make && make install
|
||||||
|
|
||||||
|
|
19
ia86.cpp
19
ia86.cpp
|
@ -131,25 +131,6 @@ void ScenarioWindow::adjustSize()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
|
||||||
// Classe FListViewEx
|
|
||||||
//----------------------------------------------------------------------
|
|
||||||
namespace finalcut
|
|
||||||
{
|
|
||||||
FListViewEx::FListViewEx (FWidget* parent)
|
|
||||||
: FListView{parent}
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
FListViewEx::~FListViewEx()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void FListViewEx::setindex(int index)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
// Classe InstructionWindow
|
// Classe InstructionWindow
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
|
|
23
ia86.h
23
ia86.h
|
@ -167,27 +167,6 @@ class ScenarioWindow final : public finalcut::FDialog
|
||||||
finalcut::FListView listview{this};
|
finalcut::FListView listview{this};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
namespace finalcut
|
|
||||||
{
|
|
||||||
class FListViewEx final : public finalcut::FListView
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
// Using-declaration
|
|
||||||
using FWidget::setGeometry;
|
|
||||||
using FListViewItems = std::list<FListViewItem*>;
|
|
||||||
// Constructor
|
|
||||||
explicit FListViewEx (FWidget* = nullptr);
|
|
||||||
// Disable copy constructor
|
|
||||||
FListViewEx (const FListViewEx&) = delete;
|
|
||||||
// Destructor
|
|
||||||
~FListViewEx() override;
|
|
||||||
// Disable copy assignment operator (=)
|
|
||||||
FListViewEx& operator = (const FListViewEx&) = delete;
|
|
||||||
void setindex(int index);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
class InstructionWindow final : public finalcut::FDialog
|
class InstructionWindow final : public finalcut::FDialog
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -210,7 +189,7 @@ class InstructionWindow final : public finalcut::FDialog
|
||||||
void initLayout() override;
|
void initLayout() override;
|
||||||
void adjustSize() override;
|
void adjustSize() override;
|
||||||
// Data members
|
// Data members
|
||||||
finalcut::FListViewEx listview{this};
|
finalcut::FListView listview{this};
|
||||||
};
|
};
|
||||||
|
|
||||||
class TextEditWindow final : public finalcut::FDialog
|
class TextEditWindow final : public finalcut::FDialog
|
||||||
|
|
Loading…
Reference in New Issue