Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/LibreOffice/fpicker/source/office/   (Office von Apache Version 25.8.3.2©)  Datei vom 5.10.2025 mit Größe 1 kB image not shown  

Quelle  autocmpledit.hxx   Sprache: C

 
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */


#pragma once

#include <vcl/idle.hxx>
#include <vcl/weld.hxx>
#include <vector>

class AutocompleteEdit
{
private:
    std::unique_ptr<weld::Entry> m_xEntry;

    std::vector<OUString> m_aEntries;
    std::vector<OUString> m_aMatching;
    Idle m_aChangedIdle;
    Link<weld::Entry&, void> m_aChangeHdl;
    sal_uInt16 m_nLastCharCode;

    DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
    DECL_LINK(ChangedHdl, weld::Entry&, void);
    DECL_LINK(TryAutoComplete, Timer*, void);

    bool Match(std::u16string_view rText);

public:
    AutocompleteEdit(std::unique_ptr<weld::Entry> xEntry);

    void show() { m_xEntry->show(); }
    void set_sensitive(bool bSensitive) { m_xEntry->set_sensitive(bSensitive); }
    OUString get_text() const { return m_xEntry->get_text(); }
    void set_text(const OUString& rText) { m_xEntry->set_text(rText); }
    void grab_focus() { m_xEntry->grab_focus(); }
    void select_region(int nStartPos, int nEndPos) { m_xEntry->select_region(nStartPos, nEndPos); }

    void connect_changed(const Link<weld::Entry&, void>& rLink) { m_aChangeHdl = rLink; }
    void connect_focus_in(const Link<weld::Widget&, void>& rLink)
    {
        m_xEntry->connect_focus_in(rLink);
    }

    void AddEntry(const OUString& rEntry);
    void ClearEntries();
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Messung V0.5
C=87 H=87 G=86

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.