remove spaces
This commit is contained in:
@@ -19,8 +19,6 @@
|
|||||||
|
|
||||||
#include "piscreendrawer.h"
|
#include "piscreendrawer.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// comment for use ascii instead of unicode symbols
|
// comment for use ascii instead of unicode symbols
|
||||||
# define USE_UNICODE
|
# define USE_UNICODE
|
||||||
|
|
||||||
@@ -266,5 +264,3 @@ void PIScreenDrawer::drawText(int x, int y, const PIString & s, Color col_char,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -22,8 +22,6 @@
|
|||||||
#include "piscreendrawer.h"
|
#include "piscreendrawer.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
using namespace PIScreenTypes;
|
using namespace PIScreenTypes;
|
||||||
|
|
||||||
|
|
||||||
@@ -257,5 +255,3 @@ void PIScreenTile::layout() {
|
|||||||
t->layout();
|
t->layout();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -22,8 +22,6 @@
|
|||||||
#include "piscreendrawer.h"
|
#include "piscreendrawer.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
using namespace PIScreenTypes;
|
using namespace PIScreenTypes;
|
||||||
|
|
||||||
|
|
||||||
@@ -694,5 +692,3 @@ void TileInput::reserCursor() {
|
|||||||
tm_blink.reset();
|
tm_blink.reset();
|
||||||
inv = false;
|
inv = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,6 @@
|
|||||||
//! \~\brief
|
//! \~\brief
|
||||||
//! \~english Console screen manager with tile layout, drawing, and input routing.
|
//! \~english Console screen manager with tile layout, drawing, and input routing.
|
||||||
//! \~russian Менеджер консольного экрана с раскладкой тайлов, отрисовкой и маршрутизацией ввода.
|
//! \~russian Менеджер консольного экрана с раскладкой тайлов, отрисовкой и маршрутизацией ввода.
|
||||||
|
|
||||||
class PIP_CONSOLE_EXPORT PIScreen
|
class PIP_CONSOLE_EXPORT PIScreen
|
||||||
: public PIThread
|
: public PIThread
|
||||||
, public PIScreenTypes::PIScreenBase {
|
, public PIScreenTypes::PIScreenBase {
|
||||||
|
|||||||
@@ -25,7 +25,6 @@
|
|||||||
#ifndef PISCREENDRAWER_H
|
#ifndef PISCREENDRAWER_H
|
||||||
#define PISCREENDRAWER_H
|
#define PISCREENDRAWER_H
|
||||||
|
|
||||||
|
|
||||||
#include "pip_console_export.h"
|
#include "pip_console_export.h"
|
||||||
#include "piscreentypes.h"
|
#include "piscreentypes.h"
|
||||||
#include "pistring.h"
|
#include "pistring.h"
|
||||||
@@ -147,5 +146,4 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif // PISCREENDRAWER_H
|
#endif // PISCREENDRAWER_H
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ class PIScreenDrawer;
|
|||||||
//! \details
|
//! \details
|
||||||
//! \~english Base class for all screen tiles providing layout and event handling.
|
//! \~english Base class for all screen tiles providing layout and event handling.
|
||||||
//! \~russian Базовый класс для всех экранных тайлов, обеспечивающий компоновку и обработку событий.
|
//! \~russian Базовый класс для всех экранных тайлов, обеспечивающий компоновку и обработку событий.
|
||||||
|
|
||||||
class PIP_CONSOLE_EXPORT PIScreenTile: public PIObject {
|
class PIP_CONSOLE_EXPORT PIScreenTile: public PIObject {
|
||||||
friend class PIScreen;
|
friend class PIScreen;
|
||||||
PIOBJECT_SUBCLASS(PIScreenTile, PIObject);
|
PIOBJECT_SUBCLASS(PIScreenTile, PIObject);
|
||||||
|
|||||||
@@ -28,7 +28,6 @@
|
|||||||
#ifndef PISCREENTILES_H
|
#ifndef PISCREENTILES_H
|
||||||
#define PISCREENTILES_H
|
#define PISCREENTILES_H
|
||||||
|
|
||||||
|
|
||||||
#include "pip_console_export.h"
|
#include "pip_console_export.h"
|
||||||
#include "piscreentile.h"
|
#include "piscreentile.h"
|
||||||
|
|
||||||
@@ -445,5 +444,4 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif // PISCREENTILES_H
|
#endif // PISCREENTILES_H
|
||||||
|
|||||||
@@ -28,7 +28,6 @@
|
|||||||
#ifndef PISCREENTYPES_H
|
#ifndef PISCREENTYPES_H
|
||||||
#define PISCREENTYPES_H
|
#define PISCREENTYPES_H
|
||||||
|
|
||||||
|
|
||||||
#include "pip_console_export.h"
|
#include "pip_console_export.h"
|
||||||
#include "pivariant.h"
|
#include "pivariant.h"
|
||||||
#include "pivariantsimple.h"
|
#include "pivariantsimple.h"
|
||||||
@@ -285,5 +284,4 @@ BINARY_STREAM_READ(PIScreenTypes::TileEvent) {
|
|||||||
|
|
||||||
REGISTER_PIVARIANTSIMPLE(PIScreenTypes::TileEvent)
|
REGISTER_PIVARIANTSIMPLE(PIScreenTypes::TileEvent)
|
||||||
|
|
||||||
|
|
||||||
#endif // PISCREENTYPES_H
|
#endif // PISCREENTYPES_H
|
||||||
|
|||||||
@@ -25,7 +25,6 @@
|
|||||||
#ifndef PITERMINAL_H
|
#ifndef PITERMINAL_H
|
||||||
#define PITERMINAL_H
|
#define PITERMINAL_H
|
||||||
|
|
||||||
|
|
||||||
#include "pikbdlistener.h"
|
#include "pikbdlistener.h"
|
||||||
#include "pip_console_export.h"
|
#include "pip_console_export.h"
|
||||||
#include "piscreentypes.h"
|
#include "piscreentypes.h"
|
||||||
@@ -115,5 +114,4 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif // PITERMINAL_H
|
#endif // PITERMINAL_H
|
||||||
|
|||||||
@@ -834,7 +834,6 @@ private:
|
|||||||
PIVector<__QueuedEvent> events_queue;
|
PIVector<__QueuedEvent> events_queue;
|
||||||
PIObject * emitter_;
|
PIObject * emitter_;
|
||||||
std::atomic_int in_event_cnt;
|
std::atomic_int in_event_cnt;
|
||||||
|
|
||||||
PIMutex mutex_, mutex_connect, mutex_queue;
|
PIMutex mutex_, mutex_connect, mutex_queue;
|
||||||
bool thread_safe_ = false, proc_event_queue = false;
|
bool thread_safe_ = false, proc_event_queue = false;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -25,7 +25,6 @@
|
|||||||
#ifndef PIETHERNET_H
|
#ifndef PIETHERNET_H
|
||||||
#define PIETHERNET_H
|
#define PIETHERNET_H
|
||||||
|
|
||||||
|
|
||||||
#include "piiodevice.h"
|
#include "piiodevice.h"
|
||||||
#include "pinetworkaddress.h"
|
#include "pinetworkaddress.h"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user