mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-30 22:54:35 +03:00
506b03740c
We were super inconsistent about this, with most "new" classes living in the Ladybird namespace, while "old" ones were in the global namespace, or even sitting in the Browser namespace.
26 lines
447 B
C++
26 lines
447 B
C++
/*
|
|
* Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QLineEdit>
|
|
|
|
namespace Ladybird {
|
|
|
|
class LocationEdit final : public QLineEdit {
|
|
Q_OBJECT
|
|
public:
|
|
explicit LocationEdit(QWidget*);
|
|
|
|
private:
|
|
virtual void focusInEvent(QFocusEvent* event) override;
|
|
virtual void focusOutEvent(QFocusEvent* event) override;
|
|
|
|
void highlight_location();
|
|
};
|
|
|
|
}
|