Skip to content
Snippets Groups Projects
Commit ccfb1894 authored by Nicky's avatar Nicky
Browse files

- Make popup appear on the right screen coordinates (this was broken after the flipy switch)

- Make sure the popup stays until it is dismissed (no need to hold the mouse button to scroll through eg a listbox) [This needs a CEF change.)
parent 8c85ec13
No related branches found
No related tags found
No related merge requests found
...@@ -100,6 +100,12 @@ class MediaPluginCEF : ...@@ -100,6 +100,12 @@ class MediaPluginCEF :
LLCEFLib* mLLCEFLib; LLCEFLib* mLLCEFLib;
VolumeCatcher mVolumeCatcher; VolumeCatcher mVolumeCatcher;
U8 *mPopupBuffer;
U32 mPopupW;
U32 mPopupH;
U32 mPopupX;
U32 mPopupY;
}; };
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
...@@ -127,12 +133,19 @@ MediaPluginBase(host_send_func, host_user_data) ...@@ -127,12 +133,19 @@ MediaPluginBase(host_send_func, host_user_data)
mCookiePath = ""; mCookiePath = "";
mPickedFile = ""; mPickedFile = "";
mLLCEFLib = new LLCEFLib(); mLLCEFLib = new LLCEFLib();
mPopupBuffer = NULL;
mPopupW = 0;
mPopupH = 0;
mPopupX = 0;
mPopupY = 0;
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// //
MediaPluginCEF::~MediaPluginCEF() MediaPluginCEF::~MediaPluginCEF()
{ {
delete[] mPopupBuffer;
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
...@@ -155,20 +168,28 @@ void MediaPluginCEF::postDebugMessage(const std::string& msg) ...@@ -155,20 +168,28 @@ void MediaPluginCEF::postDebugMessage(const std::string& msg)
// //
void MediaPluginCEF::onPageChangedCallback(unsigned char* pixels, int x, int y, int width, int height, bool is_popup) void MediaPluginCEF::onPageChangedCallback(unsigned char* pixels, int x, int y, int width, int height, bool is_popup)
{ {
if (mPixels && pixels) if( is_popup )
{
delete mPopupBuffer;
mPopupBuffer = NULL;
mPopupH = 0;
mPopupW = 0;
mPopupX = 0;
mPopupY = 0;
}
if( mPixels && pixels )
{ {
if (is_popup) if (is_popup)
{ {
for (int line = 0; line < height; ++line) if( width > 0 && height> 0 )
{ {
int inverted_y = mHeight - y - height; mPopupBuffer = new U8[ width * height * mDepth ];
int src = line * width * mDepth; memcpy( mPopupBuffer, pixels, width * height * mDepth );
int dst = (inverted_y + line) * mWidth * mDepth + x * mDepth; mPopupH = height;
mPopupW = width;
if (dst + width * mDepth < mWidth * mHeight * mDepth) mPopupX = x;
{ mPopupY = y;
memcpy(mPixels + dst, pixels + src, width * mDepth);
}
} }
} }
else else
...@@ -177,6 +198,23 @@ void MediaPluginCEF::onPageChangedCallback(unsigned char* pixels, int x, int y, ...@@ -177,6 +198,23 @@ void MediaPluginCEF::onPageChangedCallback(unsigned char* pixels, int x, int y,
{ {
memcpy(mPixels, pixels, mWidth * mHeight * mDepth); memcpy(mPixels, pixels, mWidth * mHeight * mDepth);
} }
if( mPopupBuffer && mPopupH && mPopupW )
{
U32 bufferSize = mWidth * mHeight * mDepth;
U32 popupStride = mPopupW * mDepth;
U32 bufferStride = mWidth * mDepth;
int dstY = mPopupY;
int src = 0;
int dst = dstY * mWidth * mDepth + mPopupX * mDepth;
for( int line = 0; dst + popupStride < bufferSize && line < mPopupH; ++line )
{
memcpy( mPixels + dst, mPopupBuffer + src, popupStride );
src += popupStride;
dst += bufferStride;
}
}
} }
setDirty(0, 0, mWidth, mHeight); setDirty(0, 0, mWidth, mHeight);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment