Advance Wayland and KDE package bring-up

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,69 @@
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 1999 Carsten Pfeiffer <pfeiffer@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KCOMPLETION_PRIVATE_H
#define KCOMPLETION_PRIVATE_H
#include "kcompletion.h"
#include "kcompletionmatcheswrapper_p.h"
#include "kcomptreenode_p.h"
#include <kcompletionmatches.h>
#include <QSharedPointer>
#include <kzoneallocator_p.h>
class KCompletionPrivate
{
public:
explicit KCompletionPrivate(KCompletion *parent)
: q_ptr(parent)
, completionMode(KCompletion::CompletionPopup)
, treeNodeAllocator(KCompTreeNode::allocator()) // keep strong-ref to allocator instance
, m_treeRoot(new KCompTreeNode)
, hasMultipleMatches(false)
, beep(true)
, ignoreCase(false)
, shouldAutoSuggest(true)
{
}
~KCompletionPrivate() = default;
void addWeightedItem(const QString &);
QString findCompletion(const QString &string);
// The default sorting function, sorts alphabetically
static void defaultSort(QStringList &);
// Pointer to sorter function
KCompletion::SorterFunction sorterFunction{defaultSort};
// list used for nextMatch() and previousMatch()
KCompletionMatchesWrapper matches{sorterFunction};
KCompletion *const q_ptr;
KCompletion::CompletionMode completionMode;
QSharedPointer<KZoneAllocator> treeNodeAllocator;
QString lastString;
QString lastMatch;
QString currentMatch;
std::unique_ptr<KCompTreeNode> m_treeRoot;
int rotationIndex = 0;
// TODO: Change hasMultipleMatches to bitfield after moving findAllCompletions()
// to KCompletionMatchesPrivate
KCompletion::CompOrder order : 3;
bool hasMultipleMatches;
bool beep : 1;
bool ignoreCase : 1;
bool shouldAutoSuggest : 1;
Q_DECLARE_PUBLIC(KCompletion)
};
#endif // KCOMPLETION_PRIVATE_H