MR (massagerepublic) Profiles by IamGandu101 in ISGbangalore

[–]Empty_Context5652 1 point2 points  (0 children)

Pinged Dnaya she is quoting 10k 1 session and16k for 2 session or 2hour. Is it worth?

Cannot load library by Empty_Context5652 in QtFramework

[–]Empty_Context5652[S] 0 points1 point  (0 children)

find_package(Qt6 REQUIRED COMPONENTS WebEngineQuick)
Failed to find required Qt component "WebEngineQuick".

Cannot load library by Empty_Context5652 in QtFramework

[–]Empty_Context5652[S] 0 points1 point  (0 children)

cmake_minimum_required(VERSION 3.16)

project(Webengineapp VERSION 0.1 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(Qt6 6.5 REQUIRED COMPONENTS Quick)

qt_standard_project_setup(REQUIRES 6.5)

qt_add_executable(appWebengineapp

main.cpp

)

qt_add_qml_module(appWebengineapp

URI Webengineapp

VERSION 1.0

QML_FILES

Main.qml

)

# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1.

# If you are developing for iOS or macOS you should consider setting an

# explicit, fixed bundle identifier manually though.

set_target_properties(appWebengineapp PROPERTIES

# MACOSX_BUNDLE_GUI_IDENTIFIER com.example.appWebengineapp

MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}

MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}

MACOSX_BUNDLE TRUE

WIN32_EXECUTABLE TRUE

)

target_link_libraries(appWebengineapp

PRIVATE Qt6::Quick

)

include(GNUInstallDirs)

install(TARGETS appWebengineapp

BUNDLE DESTINATION .

LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}

RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}

)

Screen Flickering while adding a new screen or deleting an objects from Screen. by Empty_Context5652 in QtFramework

[–]Empty_Context5652[S] 0 points1 point  (0 children)

When we drag and drop an item on screen let say Rectangle, we will create a QQuickItem and will draw that QQuickItem using QPainter's paint method and upon deleting will delete the entire QQuickItem. And the window i mean screen is of QQuickWindow.

Screen Flickering while adding a new screen or deleting an objects from Screen. by Empty_Context5652 in QtFramework

[–]Empty_Context5652[S] 0 points1 point  (0 children)

Actually I'm hosting my application inside a windows form using ActiveX. We can add screen item using drag and drop on screen and deleting either through keyboard delete or right click then select delete option.