Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update logview.go #657

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See [Getting Started](http://golang.org/doc/install.html)
Walk currently requires Go 1.11.x or later.

##### To Install
Now run `go get github.com/lxn/walk`
Now run `go get github.com/xlplbo/walk`

Using Walk
==========
Expand All @@ -29,8 +29,8 @@ as illustrated in this small example:
package main

import (
"github.com/lxn/walk"
. "github.com/lxn/walk/declarative"
"github.com/xlplbo/walk"
. "github.com/xlplbo/walk/declarative"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion accessibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

package walk

import "github.com/lxn/win"
import "github.com/xlplbo/win"

// AccState enum defines the state of the window/control
type AccState int32
Expand Down
2 changes: 1 addition & 1 deletion application.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync"
"time"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type Settings interface {
Expand Down
2 changes: 1 addition & 1 deletion bitmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"syscall"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

const inchesPerMeter float64 = 39.37007874
Expand Down
2 changes: 1 addition & 1 deletion boxlayout.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sort"
"sync"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type Orientation byte
Expand Down
2 changes: 1 addition & 1 deletion brush.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package walk
import (
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type HatchStyle int
Expand Down
2 changes: 1 addition & 1 deletion button.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type clickable interface {
Expand Down
2 changes: 1 addition & 1 deletion canvas.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"unicode/utf8"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

// DrawText format flags
Expand Down
2 changes: 1 addition & 1 deletion checkbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package walk
import (
"strconv"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type CheckState int
Expand Down
2 changes: 1 addition & 1 deletion clipboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"syscall"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

const clipboardWindowClass = `\o/ Walk_Clipboard_Class \o/`
Expand Down
2 changes: 1 addition & 1 deletion combobox.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"time"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type ComboBox struct {
Expand Down
4 changes: 1 addition & 3 deletions commondialogs.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ import (
"path/filepath"
"syscall"
"unsafe"
)

import (
"github.com/lxn/win"
"github.com/xlplbo/win"
)

type FileDialog struct {
Expand Down
2 changes: 1 addition & 1 deletion composite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package walk

import (
"github.com/lxn/win"
"github.com/xlplbo/win"
)

const compositeWindowClass = `\o/ Walk_Composite_Class \o/`
Expand Down
2 changes: 1 addition & 1 deletion container.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type Container interface {
Expand Down
4 changes: 1 addition & 3 deletions cursor.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ package walk

import (
"image"
)

import (
"github.com/lxn/win"
"github.com/xlplbo/win"
)

type Cursor interface {
Expand Down
2 changes: 1 addition & 1 deletion customwidget.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package walk
import (
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

const customWidgetWindowClass = `\o/ Walk_CustomWidget_Class \o/`
Expand Down
2 changes: 1 addition & 1 deletion dateedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"time"
"unsafe"

"github.com/lxn/win"
"github.com/xlplbo/win"
)

type DateEdit struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/accessibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

// AccState enum defines the state of the window/control
Expand Down
2 changes: 1 addition & 1 deletion declarative/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"fmt"

"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type Shortcut struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/brush.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"strconv"

"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type TransparentBrush struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"regexp"
"strings"

"github.com/lxn/walk"
"github.com/xlplbo/walk"
"gopkg.in/Knetic/govaluate.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion declarative/checkbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type CheckBox struct {
Expand Down
4 changes: 1 addition & 3 deletions declarative/combobox.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ package declarative

import (
"errors"
)

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type ComboBox struct {
Expand Down
4 changes: 2 additions & 2 deletions declarative/composite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/lxn/win"
"github.com/xlplbo/walk"
"github.com/xlplbo/win"
)

type Composite struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/customwidget.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type PaintMode int
Expand Down
2 changes: 1 addition & 1 deletion declarative/databinder.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"time"

"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type DataBinder struct {
Expand Down
4 changes: 1 addition & 3 deletions declarative/dateedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ package declarative

import (
"time"
)

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type DateEdit struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/datelabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type DateLabel struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/dialog.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type Dialog struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/font.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type Font struct {
Expand Down
4 changes: 2 additions & 2 deletions declarative/gradientcomposite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/lxn/win"
"github.com/xlplbo/walk"
"github.com/xlplbo/win"
)

type GradientComposite struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/groupbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type GroupBox struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/imageview.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type ImageViewMode int
Expand Down
2 changes: 1 addition & 1 deletion declarative/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"path/filepath"

"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

func tr(source string, context ...string) string {
Expand Down
2 changes: 1 addition & 1 deletion declarative/label.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type EllipsisMode int
Expand Down
2 changes: 1 addition & 1 deletion declarative/layouts.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package declarative
import (
"errors"

"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type Orientation byte
Expand Down
2 changes: 1 addition & 1 deletion declarative/lineedit.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type CaseMode uint32
Expand Down
2 changes: 1 addition & 1 deletion declarative/linklabel.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package declarative

import (
"github.com/lxn/walk"
"github.com/xlplbo/walk"
)

type LinkLabel struct {
Expand Down
6 changes: 2 additions & 4 deletions declarative/listbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ package declarative

import (
"errors"
)

import (
"github.com/lxn/walk"
"github.com/lxn/win"
"github.com/xlplbo/walk"
"github.com/xlplbo/win"
)

type ListBox struct {
Expand Down
2 changes: 1 addition & 1 deletion declarative/mainwindow.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

package declarative

import "github.com/lxn/walk"
import "github.com/xlplbo/walk"

type MainWindow struct {
// Window
Expand Down
Loading