[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2022-04-27 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=444057

Nate Graham  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||n...@kde.org
 Status|REPORTED|CONFIRMED

--- Comment #1 from Nate Graham  ---
Can confirm.

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2022-04-28 Thread postix
https://bugs.kde.org/show_bug.cgi?id=444057

postix  changed:

   What|Removed |Added

 CC||pos...@posteo.eu

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2022-06-07 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=444057

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org

--- Comment #2 from Harald Sitter  ---
Supposedly this is a bug in Qt where tooltips are rendered as standalone
windows when they have no focused parent. Not quite sure what to do about that
other than force the tooltip to not be there when the window has no focus
(which is a bit meh but seems consistent with how tooltips usually work with qt
apps)

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2021-10-19 Thread Shubham Arora
https://bugs.kde.org/show_bug.cgi?id=444057

Shubham Arora  changed:

   What|Removed |Added

 CC||kde.bugzilla@shubhamarora.d
   ||ev

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2021-10-19 Thread Shubham Arora
https://bugs.kde.org/show_bug.cgi?id=444057

Shubham Arora  changed:

   What|Removed |Added

   Keywords||wayland

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2021-10-25 Thread Marco Rebhan
https://bugs.kde.org/show_bug.cgi?id=444057

Marco Rebhan  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=444312

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2022-10-29 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=444057

Patrick Silva  changed:

   What|Removed |Added

 CC||bugsefor...@gmx.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2022-11-21 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=444057

Bug Janitor Service  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED

--- Comment #3 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/utilities/filelight/-/merge_requests/61

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2022-11-24 Thread Harald Sitter
https://bugs.kde.org/show_bug.cgi?id=444057

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/util
   ||ities/filelight/commit/e06f
   ||cc2eb04c7d3b70a4cebaef6aa23
   ||b89ad0677

--- Comment #4 from Harald Sitter  ---
Git commit e06fcc2eb04c7d3b70a4cebaef6aa23b89ad0677 by Harald Sitter.
Committed on 24/11/2022 at 10:35.
Pushed by sitter into branch 'master'.

port painting to qml & add list view

this brings more of the UI into the qml world, this time the rendering
of the filelight map. it is implemented using qtquick shapes of stacking
circles. this also introduces a listview to more reasonably glance,
navigate and manage files inside the current scope (as opposed to the
previous labeling approach inside the map). to ease discoverability the
hover states between map and list are somewhat linked so it becomes
easier to spot which segment is where in the list, and vice versa.

to facilitate all this a huge amount of reshuffling happened:

- item.cpp no longer exists, its functionality moved into either qml or
the map.cpp
- new classes dropperitem (to receive drop events from qml)
contextmenucontext (to implement the c++ side of context menu actions)
filemodel (to model the file objects for the listview)
- File is no longer a QObject, this has been moved up one level in the
architecutre -> Segment now is a QObject and delegates most of the UI
relevant functions from File
- Files are now "linked" to their segment through a uuid string. this
allows the UI code to establish a relationship between entities in the
listview and the mapview. this is intentionally not pointer based to
avoid clashes, confusion, and to prevent the Files from contributing to
the lifetime of Segments (and thus complicate the entire shebang)
- various settings have been retired as they are no longer applicable:
AA is now always on, there is no practical reason why the user would
disable it in 2022, font size (now following system defaults and
sometimes able to scale down if not enough space)
Related: bug 461193, bug 458181, bug 434146

M  +3-1src/CMakeLists.txt
M  +0-8src/Config.cpp
M  +0-3src/Config.h
A  +105  -0src/contextMenuContext.cpp [License: GPL(3+eV) GPL(v3.0)
GPL(v2.0)]
A  +50   -0src/contextMenuContext.h [License: GPL(3+eV) GPL(v3.0)
GPL(v2.0)]
M  +0-82   src/dialog.ui
A  +36   -0src/dropperItem.cpp [License: GPL(3+eV) GPL(v3.0) GPL(v2.0)]
A  +25   -0src/dropperItem.h [License: GPL(3+eV) GPL(v3.0) GPL(v2.0)]
A  +87   -0src/fileModel.cpp [License: GPL(3+eV) GPL(v3.0) GPL(v2.0)]
A  +42   -0src/fileModel.h [License: GPL(3+eV) GPL(v3.0) GPL(v2.0)]
M  +19   -1src/fileTree.h
M  +3-0src/main.cpp
M  +34   -12   src/mainContext.cpp
M  +0-1src/mainContext.h
A  +76   -0src/qml/CenterShape.qml [License: GPL(3+eV) GPL(v3.0)
GPL(v2.0)]
M  +400  -37   src/qml/MapPage.qml
A  +76   -0src/qml/SegmentShape.qml [License: GPL(3+eV) GPL(v3.0)
GPL(v2.0)]
M  +7-8src/qml/main.qml
M  +2-0src/qml/qml.qrc
D  +0-876  src/radialMap/item.cpp
D  +0-111  src/radialMap/item.h
D  +0-51   src/radialMap/labels.h
M  +97   -150  src/radialMap/map.cpp
M  +76   -19   src/radialMap/map.h
M  +20   -0src/radialMap/radialMap.cpp
M  +72   -16   src/radialMap/radialMap.h
M  +1-27   src/settingsDialog.cpp
M  +0-3src/settingsDialog.h

https://invent.kde.org/utilities/filelight/commit/e06fcc2eb04c7d3b70a4cebaef6aa23b89ad0677

-- 
You are receiving this mail because:
You are watching all bug changes.

[filelight] [Bug 444057] [Wayland] Tooltip shown as a window when filelight is unfocused

2023-01-05 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=444057

Patrick Silva  changed:

   What|Removed |Added

 CC||andrej.h...@gmail.com

--- Comment #5 from Patrick Silva  ---
*** Bug 463891 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.